Changeset 37596 in vbox for trunk/include/iprt/file.h
- Timestamp:
- Jun 22, 2011 7:30:06 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/file.h
r37559 r37596 254 254 * The ACCESS, ACTION and DENY flags are mandatory! 255 255 */ 256 RTDECL(int) RTFileOpen(PRTFILE pFile, const char *pszFilename, uint 32_t fOpen);256 RTDECL(int) RTFileOpen(PRTFILE pFile, const char *pszFilename, uint64_t fOpen); 257 257 258 258 /** … … 267 267 * @param ... Arguments to the format string. 268 268 */ 269 RTDECL(int) RTFileOpenF(PRTFILE pFile, uint 32_t fOpen, const char *pszFilenameFmt, ...);269 RTDECL(int) RTFileOpenF(PRTFILE pFile, uint64_t fOpen, const char *pszFilenameFmt, ...); 270 270 271 271 /** … … 280 280 * @param va Arguments to the format string. 281 281 */ 282 RTDECL(int) RTFileOpenV(PRTFILE pFile, uint 32_t fOpen, const char *pszFilenameFmt, va_list va);282 RTDECL(int) RTFileOpenV(PRTFILE pFile, uint64_t fOpen, const char *pszFilenameFmt, va_list va); 283 283 284 284 /** … … 289 289 * @param fAccess The desired access only, i.e. read, write or both. 290 290 */ 291 RTDECL(int) RTFileOpenBitBucket(PRTFILE phFile, uint 32_t fAccess);291 RTDECL(int) RTFileOpenBitBucket(PRTFILE phFile, uint64_t fAccess); 292 292 293 293 /**
Note:
See TracChangeset
for help on using the changeset viewer.