Changeset 21389 for trunk/include
- Timestamp:
- Jul 14, 2010, 12:39:55 AM (15 years ago)
- Location:
- trunk/include/win
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/commctrl.h
r10534 r21389 674 674 /* Subclassing stuff */ 675 675 #ifdef __WIN32OS2__ 676 typedef LRESULT (* CALLBACK SUBCLASSPROC)(HWND, UINT, WPARAM, LPARAM, UINT_PTR, DWORD );676 typedef LRESULT (* CALLBACK SUBCLASSPROC)(HWND, UINT, WPARAM, LPARAM, UINT_PTR, DWORD_PTR); 677 677 #else 678 678 typedef LRESULT (CALLBACK *SUBCLASSPROC)(HWND, UINT, WPARAM, LPARAM, UINT_PTR, DWORD_PTR); -
trunk/include/win/windef.h
r21378 r21389 226 226 #ifndef INT_PTR_D 227 227 #define INT_PTR_D 228 typedef INT *INT_PTR;228 typedef int INT_PTR, *PINT_PTR; 229 229 #endif 230 230 typedef unsigned int UINT; … … 232 232 #ifndef UINT_PTR_D 233 233 #define UINT_PTR_D 234 typedef UINT *UINT_PTR;234 typedef unsigned int UINT_PTR, *PUINT_PTR; 235 235 #endif 236 236 typedef unsigned short WORD; … … 238 238 #ifndef DWORD_PTR_D 239 239 #define DWORD_PTR_D 240 typedef unsigned long *DWORD_PTR, *PDWORD_PTR;240 typedef unsigned long DWORD_PTR, *PDWORD_PTR; 241 241 #endif 242 242 typedef unsigned long ULONG;
Note:
See TracChangeset
for help on using the changeset viewer.