Changeset 257 for trunk/thune/win32
- Timestamp:
- 08/28/06 15:52:42 (2 years ago)
- Location:
- trunk/thune/win32
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/thune/win32/os.c
r248 r257 90 90 Returns -1 if not present. 91 91 */ 92 intur_fileSize( const char* path )92 long long ur_fileSize( const char* path ) 93 93 { 94 94 LARGE_INTEGER lsize; … … 106 106 if( ! ok ) 107 107 return -1; 108 return lsize.LowPart; 108 //return lsize.LowPart; 109 return lsize.QuadPart; 109 110 } 110 111 -
trunk/thune/win32/os.h
r170 r257 66 66 #endif 67 67 68 extern intur_fileSize( const char* path );68 extern long long ur_fileSize( const char* path ); 69 69 extern void ur_installExceptionHandlers(); 70 70 -
trunk/thune/win32/stdint.h
r131 r257 9 9 typedef unsigned long long uint64_t; 10 10 11 12 /* Minimum/Maximum */ 13 14 #define INT8_MIN -128 15 #define INT16_MIN (-32767-1) 16 #define INT32_MIN (-2147483647-1) 17 18 #define INT8_MAX 127 19 #define INT16_MAX 32767 20 #define INT32_MAX 2147483647 21 22 #define UINT8_MAX 255 23 #define UINT16_MAX 65535 24 #define UINT32_MAX 4294967295U 25
