mirror of
https://github.com/winfsp/winfsp.git
synced 2025-06-15 00:02:46 -05:00
winfsp-tests: memfs
This commit is contained in:
23
tst/winfsp-tests/memfs.h
Normal file
23
tst/winfsp-tests/memfs.h
Normal file
@ -0,0 +1,23 @@
|
||||
/**
|
||||
* @file memfs.h
|
||||
*
|
||||
* @copyright 2015 Bill Zissimopoulos
|
||||
*/
|
||||
|
||||
#ifndef MEMFS_H_INCLUDED
|
||||
#define MEMFS_H_INCLUDED
|
||||
|
||||
#include <winfsp/winfsp.h>
|
||||
|
||||
typedef struct _MEMFS
|
||||
{
|
||||
FSP_FILE_SYSTEM *FileSystem;
|
||||
ULONG MaxFileNodes;
|
||||
ULONG MaxFileSize;
|
||||
} MEMFS;
|
||||
|
||||
NTSTATUS MemfsCreate(PWSTR DevicePath, ULONG MaxFileNodes, ULONG MaxFileSize,
|
||||
MEMFS **PMemfs);
|
||||
VOID MemfsDelete(MEMFS *Memfs);
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user