Changeset 29

Show
Ignore:
Timestamp:
07/02/04 03:57:22 (4 years ago)
Author:
brad
Message:

added some to the notes.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/0.1/src/dwt/conversion_notes.txt

    r27 r29  
    1818================================================================== 
    1919 
     20LRESULT result = ... ; 
     21    if (result != null) return result; 
     22     
     23    becomes 
     24     
     25    if (cast(void*)result != null) return result; 
     26     
     27This is due to aliasing LRESULT as int in dwt/internal/win32/types 
     28 
     29------ 
     30 
     31also on this line 
     32 
     33LRESULT f()  
     34    return cast(int)null; 
     35     
     36    used to be 
     37     
     38    return null; 
     39 
     40================================================================== 
     41 
    2042 
    2143