Changeset 29
- Timestamp:
- 07/02/04 03:57:22 (4 years ago)
- Files:
-
- branches/0.1/src/dwt/conversion_notes.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/0.1/src/dwt/conversion_notes.txt
r27 r29 18 18 ================================================================== 19 19 20 LRESULT result = ... ; 21 if (result != null) return result; 22 23 becomes 24 25 if (cast(void*)result != null) return result; 26 27 This is due to aliasing LRESULT as int in dwt/internal/win32/types 28 29 ------ 30 31 also on this line 32 33 LRESULT f() 34 return cast(int)null; 35 36 used to be 37 38 return null; 39 40 ================================================================== 41 20 42 21 43
