Changeset 34579 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Dec 1, 2010 3:45:02 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 68374
- Location:
- trunk/src/VBox/Runtime/r3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/fileio-posix.cpp
r34016 r34579 347 347 RTR3DECL(int) RTFileClose(RTFILE File) 348 348 { 349 if (File == NIL_RTFILE) 350 return VINF_SUCCESS; 349 351 if (close((int)File) == 0) 350 352 return VINF_SUCCESS; -
trunk/src/VBox/Runtime/r3/win/fileio-win.cpp
r34003 r34579 341 341 RTR3DECL(int) RTFileClose(RTFILE File) 342 342 { 343 if (File == NIL_RTFILE) 344 return VINF_SUCCESS; 343 345 if (CloseHandle((HANDLE)File)) 344 346 return VINF_SUCCESS;
Note:
See TracChangeset
for help on using the changeset viewer.