Changeset 253
- Timestamp:
- 20/12/2005 19:46:44 (6 years ago)
- Location:
- box/chris/win32/pipe-security/lib
- Files:
-
- 2 edited
-
common/BoxPlatform.h (modified) (1 diff)
-
win32/emu.h (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
box/chris/win32/pipe-security/lib/common/BoxPlatform.h
r217 r253 78 78 #define HAVE_UINT32_T 79 79 #define HAVE_UINT64_T 80 #define HAVE_U_INT8_T 81 #define HAVE_U_INT16_T 82 #define HAVE_U_INT32_T 83 #define HAVE_U_INT64_T 80 84 81 typedef unsigned int uid_t;82 typedef unsigned int gid_t;85 // typedef unsigned int uid_t; 86 // typedef unsigned int gid_t; 83 87 typedef int pid_t; 84 88 #endif // WIN32 && !__MINGW32__ -
box/chris/win32/pipe-security/lib/win32/emu.h
r217 r253 4 4 #define EMU_INCLUDE 5 5 6 #define _STAT_DEFINED6 // #define _STAT_DEFINED 7 7 #define _INO_T_DEFINED 8 8 … … 179 179 } 180 180 181 index = str.find('-');181 index = (int)str.find('-'); 182 182 183 183 if ( index == -1 ) return -1; … … 188 188 str = args[optind]; 189 189 } 190 while ( ( opttolookfor = interestin.find(opt)) == -1 );190 while ( ( opttolookfor = (int)interestin.find(opt)) == -1 ); 191 191 192 192 if ( interestin[opttolookfor+1] == ':' ) … … 258 258 inline int mkdir(const char *pathname, mode_t mode) 259 259 { 260 return mkdir(pathname);260 return _mkdir(pathname); 261 261 } 262 262 … … 359 359 }; 360 360 361 #if 0 361 362 // I think this should get us going 362 363 // Although there is a warning about … … 382 383 typedef u_int64_t _ino_t; 383 384 #endif 385 #endif // 0 384 386 385 387 int ourstat(const char * name, struct stat * st);
Note: See TracChangeset
for help on using the changeset viewer.
