Changeset 39612 in vbox for trunk/src/VBox/Runtime/r3/win/symlink-win.cpp
- Timestamp:
- Dec 14, 2011 2:19:55 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/win/symlink-win.cpp
r33437 r39612 117 117 118 118 119 RTDECL(int) RTSymlinkCreate(const char *pszSymlink, const char *pszTarget, RTSYMLINKTYPE enmType )119 RTDECL(int) RTSymlinkCreate(const char *pszSymlink, const char *pszTarget, RTSYMLINKTYPE enmType, uint32_t fCreate) 120 120 { 121 121 /* … … 145 145 if (!s_pfnCreateSymbolicLinkW) 146 146 { 147 LogFlow(("RTSymlinkCreate(%p={%s}, %p={%s}, %d ): returns VERR_NOT_SUPPORTED - Windows API not found\n",148 pszSymlink, pszSymlink, pszTarget, pszTarget, enmType ));147 LogFlow(("RTSymlinkCreate(%p={%s}, %p={%s}, %d, %#x): returns VERR_NOT_SUPPORTED - Windows API not found\n", 148 pszSymlink, pszSymlink, pszTarget, pszTarget, enmType, fCreate)); 149 149 return VERR_NOT_SUPPORTED; 150 150 } … … 216 216 } 217 217 218 LogFlow(("RTSymlinkCreate(%p={%s}, %p={%s}, %d ): returns %Rrc\n", pszSymlink, pszSymlink, pszTarget, pszTarget, enmType, rc));218 LogFlow(("RTSymlinkCreate(%p={%s}, %p={%s}, %d, %#x): returns %Rrc\n", pszSymlink, pszSymlink, pszTarget, pszTarget, enmType, fCreate, rc)); 219 219 return rc; 220 220 } 221 221 222 222 223 RTDECL(int) RTSymlinkDelete(const char *pszSymlink )223 RTDECL(int) RTSymlinkDelete(const char *pszSymlink, uint32_t fDelete) 224 224 { 225 225 /* … … 259 259 } 260 260 261 LogFlow(("RTSymlinkDelete(%p={%s} ): returns %Rrc\n", pszSymlink, pszSymlink, rc));261 LogFlow(("RTSymlinkDelete(%p={%s}, %#x): returns %Rrc\n", pszSymlink, pszSymlink, fDelete, rc)); 262 262 return rc; 263 263 } 264 264 265 265 266 RTDECL(int) RTSymlinkRead(const char *pszSymlink, char *pszTarget, size_t cbTarget )266 RTDECL(int) RTSymlinkRead(const char *pszSymlink, char *pszTarget, size_t cbTarget, uint32_t fRead) 267 267 { 268 268 char *pszMyTarget;
Note:
See TracChangeset
for help on using the changeset viewer.