memfs: MemfsCreate: RootSddl

This commit is contained in:
Bill Zissimopoulos
2016-04-09 12:02:18 -07:00
parent 25911a808c
commit d1b004dc29
4 changed files with 51 additions and 7 deletions

View File

@ -21,9 +21,13 @@ enum
MemfsNet = 0x01,
};
NTSTATUS MemfsCreate(ULONG Flags, ULONG FileInfoTimeout,
ULONG MaxFileNodes, ULONG MaxFileSize,
NTSTATUS MemfsCreate(
ULONG Flags,
ULONG FileInfoTimeout,
ULONG MaxFileNodes,
ULONG MaxFileSize,
PWSTR VolumePrefix,
PWSTR RootSddl,
MEMFS **PMemfs);
VOID MemfsDelete(MEMFS *Memfs);
NTSTATUS MemfsStart(MEMFS *Memfs);