Changeset 21916 for trunk/include/odincrt.h
- Timestamp:
- Dec 18, 2011, 10:28:22 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 1 bin 2 Makefile.inc 1 env.cmd 2 LocalConfig.kmk
-
-
Property svn:mergeinfo
set to
/branches/gcc-kmk merged eligible
- Property svn:ignore
-
trunk/include/odincrt.h
r21425 r21916 17 17 } CRITICAL_SECTION_OS2, *PCRITICAL_SECTION_OS2; 18 18 19 #ifndef OS2_INCLUDED 20 typedef const char *PCSZ; 21 #endif 22 23 #ifdef __cplusplus 24 extern "C" { 25 #endif 26 19 27 ULONG WIN32API DosValidateCriticalSection (CRITICAL_SECTION_OS2 *crit); 20 28 ULONG WIN32API DosDeleteCriticalSection(CRITICAL_SECTION_OS2 *); 21 29 ULONG WIN32API DosEnterCriticalSection(CRITICAL_SECTION_OS2 *, ULONG ulTimeout = SEM_INDEFINITE_WAIT); 22 ULONG WIN32API DosInitializeCriticalSection(CRITICAL_SECTION_OS2 *, char *pszSemName, BOOL fShared = FALSE);23 ULONG WIN32API DosAccessCriticalSection(CRITICAL_SECTION_OS2 *, char *pszSemName);30 ULONG WIN32API DosInitializeCriticalSection(CRITICAL_SECTION_OS2 *, PCSZ pszSemName, BOOL fShared = FALSE); 31 ULONG WIN32API DosAccessCriticalSection(CRITICAL_SECTION_OS2 *, PCSZ pszSemName); 24 32 ULONG WIN32API DosLeaveCriticalSection(CRITICAL_SECTION_OS2 *); 25 33 … … 34 42 #endif 35 43 44 #ifdef __cplusplus 45 } // extern "C" 46 #endif 47 36 48 #endif //__ODINCRT_H__
Note:
See TracChangeset
for help on using the changeset viewer.