mirror of
https://github.com/winfsp/winfsp.git
synced 2025-06-14 15:52:47 -05:00
tst: passthrough-fuse: windows-posix layer
This commit is contained in:
@ -355,6 +355,12 @@ DIR *opendir(const char *path)
|
||||
return dirp;
|
||||
}
|
||||
|
||||
void rewinddir(DIR *dirp)
|
||||
{
|
||||
if (INVALID_HANDLE_VALUE != dirp->handle)
|
||||
FindClose(dirp->handle);
|
||||
}
|
||||
|
||||
struct dirent *readdir(DIR *dirp)
|
||||
{
|
||||
WIN32_FIND_DATAA FindData;
|
||||
|
Reference in New Issue
Block a user