mirror of
https://github.com/winfsp/winfsp.git
synced 2025-04-24 17:32:29 -05:00
24 lines
399 B
C
24 lines
399 B
C
/**
|
|
* @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
|