Changeset 9985 for trunk/include/win
- Timestamp:
- Apr 7, 2003, 8:40:07 PM (23 years ago)
- Location:
- trunk/include/win
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/debugtools.h
r9707 r9985 6 6 #include <odinwrap.h> 7 7 #include <odin.h> 8 #include <stdio.h> 8 9 9 10 #ifndef __MISC_H__ … … 206 207 #endif 207 208 209 #ifdef __GNUC__ 210 inline static const char *debugstr_guid( const GUID *id ) 211 #else 208 212 static char *debugstr_guid( const GUID *id ) 213 #endif 209 214 { 210 215 static char temp[64]; 211 char *str;212 216 213 217 if (!id) return "(null)"; … … 230 234 #endif 231 235 236 #ifdef __GNUC__ 237 inline static LPCSTR debugstr_an (LPCSTR src, int n) 238 #else 232 239 static LPCSTR debugstr_an (LPCSTR src, int n) 240 #endif 233 241 { 234 242 LPSTR dst; … … 281 289 /* ---------------------------------------------------------------------- */ 282 290 291 #ifdef __GNUC__ 292 inline static LPCSTR debugstr_wn (LPCWSTR src, int n) 293 #else 283 294 static LPCSTR debugstr_wn (LPCWSTR src, int n) 295 #endif 284 296 { 285 297 LPSTR dst; -
trunk/include/win/ntddk.h
r9683 r9985 1043 1043 NTSTATUS WINAPI RtlInitializeCriticalSection( RTL_CRITICAL_SECTION *crit ); 1044 1044 NTSTATUS WINAPI RtlInitializeCriticalSectionAndSpinCount( RTL_CRITICAL_SECTION *crit, DWORD spincount ); 1045 1046 void WINAPI RtlInitializeBitMap(PRTL_BITMAP,LPBYTE,ULONG); 1047 void WINAPI RtlSetBits(PRTL_BITMAP,ULONG,ULONG); 1048 BOOLEAN WINAPI RtlAreBitsSet(PCRTL_BITMAP,ULONG,ULONG); 1049 BOOLEAN WINAPI RtlAreBitsClear(PCRTL_BITMAP,ULONG,ULONG); 1050 1045 1051 NTSTATUS WINAPI RtlDeleteCriticalSection( RTL_CRITICAL_SECTION *crit ); 1046 1052 NTSTATUS WINAPI RtlpWaitForCriticalSection( RTL_CRITICAL_SECTION *crit ); … … 1066 1072 1067 1073 DWORD WINAPI RtlAdjustPrivilege(DWORD x1,DWORD x2,DWORD x3,DWORD x4); 1068 DWORD WINAPI RtlIntegerToChar(DWORD x1,DWORD x2,DWORD x3,DWORD x4);1074 NTSTATUS WINAPI RtlIntegerToChar(ULONG,ULONG,ULONG,PCHAR); 1069 1075 LPVOID WINAPI RtlNormalizeProcessParams(LPVOID x); 1070 1076 DWORD WINAPI RtlNtStatusToDosError(NTSTATUS status); -
trunk/include/win/ntdef.h
r56 r9985 1 /* $Id: ntdef.h,v 1.2 1999-06-08 15:49:37 phaller Exp $ */2 3 1 #ifndef __WINE_NTDEF_H 4 2 #define __WINE_NTDEF_H … … 31 29 typedef LONG NTSTATUS; 32 30 typedef NTSTATUS *PNTSTATUS; 31 32 typedef CONST char *PCSZ; 33 33 34 34 typedef short CSHORT;
Note:
See TracChangeset
for help on using the changeset viewer.