コード例 #1
0
ファイル: passthrough.c プロジェクト: billziss-gh/winfsp
static NTSTATUS SvcStop(FSP_SERVICE *Service)
{
    PTFS *Ptfs = Service->UserContext;

    FspFileSystemStopDispatcher(Ptfs->FileSystem);
    PtfsDelete(Ptfs);

    return STATUS_SUCCESS;
}
コード例 #2
0
ファイル: memfs.cpp プロジェクト: LucaBongiorni/winfsp
VOID MemfsStop(MEMFS *Memfs)
{
    FspFileSystemStopDispatcher(Memfs->FileSystem);
}