- Timestamp:
- Nov 10, 2016 3:27:09 PM (8 years ago)
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/Makefile.kmk
r64619 r64640 793 793 r3/nt/pathint-nt.cpp \ 794 794 r3/nt/RTFileQueryFsSizes-nt.cpp \ 795 r3/nt/RTPathQueryInfo-nt.cpp \ 795 796 r3/nt/RTProcQueryParent-r3-nt.cpp \ 796 797 r3/win/env-win.cpp \ -
trunk/src/VBox/Runtime/r3/nt/pathint-nt.cpp
r62584 r64640 172 172 static int rtNtPathToNative(struct _UNICODE_STRING *pNtName, PHANDLE phRootDir, const char *pszPath) 173 173 { 174 /** @todo This code sucks a bit performance wise, esp. calling 175 * generic RTPathAbs. Too many buffers involved, I think. */ 176 174 177 /* 175 178 * Very simple conversion of a win32-like path into an NT path. -
trunk/src/VBox/Runtime/r3/win/path-win.cpp
r64620 r64640 248 248 249 249 250 #if 0 /* use nt version of this */ 251 250 252 RTR3DECL(int) RTPathQueryInfo(const char *pszPath, PRTFSOBJINFO pObjInfo, RTFSOBJATTRADD enmAdditionalAttribs) 251 253 { 252 254 return RTPathQueryInfoEx(pszPath, pObjInfo, enmAdditionalAttribs, RTPATH_F_ON_LINK); 253 255 } 256 #endif 257 #if 0 254 258 255 259 … … 409 413 return VINF_SUCCESS; 410 414 } 415 416 #endif /* using NT version*/ 411 417 412 418
Note:
See TracChangeset
for help on using the changeset viewer.