Changeset 69753 in vbox for trunk/src/VBox/HostServices/SharedFolders/testcase/tstShflCase.cpp
- Timestamp:
- Nov 19, 2017 2:27:58 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedFolders/testcase/tstShflCase.cpp
r69675 r69753 106 106 }; 107 107 108 int rtDirOpenFiltered( PRTDIR *ppDir, const char *pszPath, RTDIRFILTER enmFilter, uint32_t fFlags)108 int rtDirOpenFiltered(RTDIR *phDir, const char *pszPath, RTDIRFILTER enmFilter, uint32_t fFlags) 109 109 { 110 110 RT_NOREF2(enmFilter, fFlags); … … 118 118 AssertFailed(); 119 119 120 *p pDir = (PRTDIR)1;120 *phDir = (RTDIR)1; 121 121 return VINF_SUCCESS; 122 122 } 123 123 124 int rtDirClose( PRTDIR pDir)125 { 126 RT_NOREF1( pDir);124 int rtDirClose(RTDIR hDir) 125 { 126 RT_NOREF1(hDir); 127 127 iDirFile = 0; 128 128 return VINF_SUCCESS; 129 129 } 130 130 131 int rtDirReadEx( PRTDIR pDir, PRTDIRENTRYEX pDirEntry, size_t *pcbDirEntry, RTFSOBJATTRADD enmAdditionalAttribs, uint32_t fFlags)132 { 133 RT_NOREF4( pDir, pcbDirEntry, enmAdditionalAttribs, fFlags);131 int rtDirReadEx(RTDIR hDir, PRTDIRENTRYEX pDirEntry, size_t *pcbDirEntry, RTFSOBJATTRADD enmAdditionalAttribs, uint32_t fFlags) 132 { 133 RT_NOREF4(hDir, pcbDirEntry, enmAdditionalAttribs, fFlags); 134 134 switch (iDirList) 135 135 { … … 200 200 size_t cbComponent; 201 201 int rc = VERR_FILE_NOT_FOUND; 202 PRTDIR hSearch = 0;202 RTDIR hSearch = NIL_RTDIR; 203 203 char szWildCard[4]; 204 204
Note:
See TracChangeset
for help on using the changeset viewer.