Changeset 21352 for trunk/include/win
- Timestamp:
- Feb 21, 2010, 5:28:20 PM (16 years ago)
- Location:
- trunk/include/win
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/debugstr.h
r10004 r21352 12 12 #define debugstr_w(a) debugstr_wn(a, 80) 13 13 #else 14 #define debugstr_a(a) a15 #define debugstr_w(a) a14 #define debugstr_a(a) "" 15 #define debugstr_w(a) "" 16 16 #endif 17 17 -
trunk/include/win/debugtools.h
r21301 r21352 343 343 } 344 344 #else 345 #define debugstr_guid(a) 0 345 #define debugstr_guid(a) "" 346 #define debugstr_an(a,n) "" 347 #define debugstr_wn(w,n) "" 346 348 #endif 347 349 -
trunk/include/win/unistd.h
r6508 r21352 3 3 4 4 #endif 5 -
trunk/include/win/windef.h
r21301 r21352 254 254 typedef double DWORDLONG; 255 255 #elif defined (__EMX__) 256 #ifndef _INT64_T_DECLARED 256 257 typedef long long int64_t; /* LONGLONG */ 257 258 typedef unsigned long long u_int64_t; /* LONGLONG */ 259 #endif 260 #ifndef _UINT64_T_DECLARED 258 261 typedef unsigned long long uint64_t; /* LONGLONG */ 262 #endif 259 263 typedef int64_t LONGLONG; 260 264 typedef uint64_t ULONGLONG; -
trunk/include/win/wine/unicode.h
r21307 r21352 99 99 extern _K32CONV int snprintfW( WCHAR *str, unsigned int len, const WCHAR *format, ... ); 100 100 extern _K32CONV int vsnprintfW( WCHAR *str, unsigned int len, const WCHAR *format, va_list valist ); 101 /*RLW*/ 102 extern _K32CONV int sprintfW( WCHAR *str, const WCHAR *format, ...); 101 103 102 104 static inline int is_dbcs_leadbyte( const union cptable *table, unsigned char ch ) -
trunk/include/win/winnt.h
r21327 r21352 1196 1196 #define STATUS_NO_EAS_ON_FILE 0xC0000052 1197 1197 #define STATUS_EA_CORRUPT_ERROR 0xC0000053 1198 #define STATUS_ LOCK_NOT_GRANTED 0xC0000054 /* FIXME: not sure */1199 #define STATUS_ FILE_LOCK_CONFLICT 0xC0000055 /* FIXME: not sure */1198 #define STATUS_FILE_LOCK_CONFLICT 0xC0000054 1199 #define STATUS_LOCK_NOT_GRANTED 0xC0000055 1200 1200 #define STATUS_DELETE_PENDING 0xC0000056 1201 1201 #define STATUS_CTL_FILE_NOT_SUPPORTED 0xC0000057 … … 1893 1893 #else /* __WINE__ */ 1894 1894 #define NtCurrentTeb GetThreadTEB 1895 struct _TEB *WINAPI GetThreadTEB( );1895 struct _TEB *WINAPI GetThreadTEB(void); 1896 1896 #endif 1897 1897 #endif //__WIN32OS2__
Note:
See TracChangeset
for help on using the changeset viewer.