Changeset 21808 for branches/gcc-kmk/include
- Timestamp:
- Nov 14, 2011, 11:03:47 PM (14 years ago)
- Location:
- branches/gcc-kmk/include
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gcc-kmk/include/auxthread.h
r21596 r21808 15 15 #endif 16 16 17 #ifdef __cplusplus 18 extern "C" { 19 #endif 20 17 21 typedef PVOID (* PAUXTHREADFN)(PVOID arg1, PVOID arg2, PVOID arg3, PVOID arg4); 18 22 … … 25 29 VOID StopAuxThread(); 26 30 31 #ifdef __cplusplus 32 } // extern "C" 33 #endif 34 27 35 #endif //__AUXTHREAD_H__ -
branches/gcc-kmk/include/objhandle.h
r10338 r21808 46 46 //... 47 47 48 #ifdef __cplusplus 49 extern "C" { 50 #endif 51 48 52 typedef ULONG OBJHANDLE; 49 53 … … 64 68 #define ObjWinToOS2Region(a) ObjQueryHandleData(a, HNDL_REGION) 65 69 70 #ifdef __cplusplus 71 } // extern "C" 72 #endif 73 66 74 #endif //__OBJHANDLE_H__ -
branches/gcc-kmk/include/win/dde.h
r7869 r21808 28 28 #define WM_DDE_LAST WM_DDE_EXECUTE 29 29 #define WM_DDE_FIRST WM_DDE_INITIATE 30 31 #ifdef __cplusplus 32 extern "C" { 33 #endif 30 34 31 35 /* DDEACK: wStatus in WM_DDE_ACK message */ … … 75 79 LPARAM WINAPI ReuseDDElParam(LPARAM,UINT,UINT,UINT,UINT); 76 80 81 #ifdef __cplusplus 82 } // extern "C" 83 #endif 84 77 85 #endif /* __WINE_DDE_H */ -
branches/gcc-kmk/include/winuser32.h
r10435 r21808 12 12 #include <dcdata.h> 13 13 14 #ifdef __cplusplus 15 extern "C" { 16 #endif 17 14 18 ULONG OSLibGetScreenHeight(); 15 19 ULONG OSLibGetScreenWidth(); … … 24 28 LONG WIN32API clientHeight(HWND hwnd, pDCData pHps); 25 29 int WIN32API setMapModeDC(pDCData pHps, int mode); 30 31 #ifdef __cplusplus 32 } // extern "C" 33 #endif 34 35 #endif 36 37 #ifdef __cplusplus 38 extern "C" { 26 39 #endif 27 40 … … 98 111 } POSTMSG_PACKET; 99 112 113 #ifdef __cplusplus 114 } // extern "C" 115 #endif 116 100 117 #endif //__WINUSER32_H__
Note:
See TracChangeset
for help on using the changeset viewer.