Changeset 21598 for trunk/include
- Timestamp:
- Mar 23, 2011, 5:49:23 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win32type.h
r21454 r21598 183 183 184 184 // boolean 185 typedef unsigned long BOOL32; 186 typedef unsigned short BOOL16; 187 185 typedef unsigned short BOOL16_W; 188 186 #ifdef __FORCE_BOOL_AS_INT__ 189 typedef int BOOL ;187 typedef int BOOL_W; 190 188 #else 191 typedef unsigned long BOOL; 192 #endif 193 189 typedef unsigned long BOOL_W; 190 #endif 194 191 195 192 #ifndef FALSE … … 564 561 *****************************************************************************/ 565 562 566 //PH: Warning -- OS/2 has BOOL == unsigned long,567 // Win32 has BOOL == int.568 typedef int BOOL32_W;569 typedef int BOOL_W;570 571 572 573 574 575 576 577 563 //@@@PH ----------------------------------------------------------------------- 578 564 #if 0 … … 623 609 } OVERLAPPED, *LPOVERLAPPED; 624 610 625 typedef VOID ( WIN32API *LPOVERLAPPED_COMPLETION_ROUTINE)(DWORD dwErrorCode,626 DWORD dwNumberOfBytesTransfered,627 LPOVERLAPPED lpOverlapped);611 typedef VOID (* WIN32API LPOVERLAPPED_COMPLETION_ROUTINE)(DWORD dwErrorCode, 612 DWORD dwNumberOfBytesTransfered, 613 LPOVERLAPPED lpOverlapped); 628 614 629 615 #endif … … 1326 1312 1327 1313 1328 typedef VOID ( CALLBACK *TIMERPROC)(HWND hwnd, UINT msg, UINT id, DWORD dwTime);1314 typedef VOID (* CALLBACK TIMERPROC)(HWND hwnd, UINT msg, UINT id, DWORD dwTime); 1329 1315 1330 1316 typedef struct
Note:
See TracChangeset
for help on using the changeset viewer.