Changeset 77685 in vbox for trunk/src/VBox/HostServices/SharedFolders/testcase
- Timestamp:
- Mar 13, 2019 5:00:36 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 129326
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedFolders/testcase/tstSharedFolderService.cpp
r77276 r77685 369 369 static RTFILE testRTFileOpenpFile; 370 370 371 extern int testRTFileOpen (PRTFILE pFile, const char *pszFilename, uint64_t fOpen)371 extern int testRTFileOpenEx(const char *pszFilename, uint64_t fOpen, PRTFILE phFile, PRTFILEACTION penmActionTaken) 372 372 { 373 373 /* RTPrintf("%s, pszFilename=%s, fOpen=0x%llx\n", __PRETTY_FUNCTION__, … … 377 377 if (g_fFailIfNotLowercase && !RTStrIsLowerCased(strpbrk(pszFilename, "/\\"))) 378 378 return VERR_FILE_NOT_FOUND; 379 *pFile = testRTFileOpenpFile; 379 *phFile = testRTFileOpenpFile; 380 *penmActionTaken = RTFILEACTION_CREATED; 380 381 testRTFileOpenpFile = 0; 381 382 return VINF_SUCCESS;
Note:
See TracChangeset
for help on using the changeset viewer.