Changeset 21395 for trunk/include
- Timestamp:
- Jul 27, 2010, 10:08:45 PM (15 years ago)
- Location:
- trunk/include/win/msvcrt
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/msvcrt/malloc.h
r9631 r21395 66 66 MSVCRT(size_t) _heapused(MSVCRT(size_t)*,MSVCRT(size_t)*); 67 67 int _heapwalk(_HEAPINFO*); 68 MSVCRT(size_t) _msize(void*);68 MSVCRT(size_t) MSVCRT(_msize)(void*); 69 69 70 70 void* MSVCRT(calloc)(MSVCRT(size_t),MSVCRT(size_t)); -
trunk/include/win/msvcrt/stddef.h
r9631 r21395 49 49 #endif 50 50 51 unsigned long __threadid();52 unsigned long __threadhandle();53 #define _threadid ( __threadid())51 unsigned long MSVCRT(__threadid)(); 52 unsigned long MSVCRT(__threadhandle)(); 53 #define _threadid (MSVRTT(__threadid)()) 54 54 55 55 #ifdef __cplusplus -
trunk/include/win/msvcrt/stdio.h
r10004 r21395 51 51 #endif 52 52 53 #ifndef USE_MSVCRT_PREFIX54 55 53 #define STDIN_FILENO 0 56 54 #define STDOUT_FILENO 1 57 55 #define STDERR_FILENO 2 56 57 #ifndef USE_MSVCRT_PREFIX 58 58 59 59 /* more file._flag flags, but these conflict with Unix */
Note:
See TracChangeset
for help on using the changeset viewer.