mirror of
https://github.com/winfsp/winfsp.git
synced 2025-06-14 15:52:47 -05:00
tst: winfsp-tests: initial network share support
This commit is contained in:
@ -10,7 +10,10 @@ int memfs_running;
|
||||
void *memfs_start_ex(ULONG Flags, ULONG FileInfoTimeout)
|
||||
{
|
||||
if (-1 == Flags)
|
||||
{
|
||||
memfs_running = 1;
|
||||
return 0;
|
||||
}
|
||||
|
||||
MEMFS *Memfs;
|
||||
NTSTATUS Result;
|
||||
@ -47,11 +50,11 @@ void *memfs_start(ULONG Flags)
|
||||
|
||||
void memfs_stop(void *data)
|
||||
{
|
||||
memfs_running = 0;
|
||||
|
||||
if (0 == data)
|
||||
return;
|
||||
|
||||
memfs_running = 0;
|
||||
|
||||
MEMFS *Memfs = data;
|
||||
|
||||
MemfsStop(Memfs);
|
||||
|
Reference in New Issue
Block a user