mirror of
https://github.com/winfsp/winfsp.git
synced 2025-06-15 16:22:43 -05:00
inc: winfsp.h
This commit is contained in:
@ -59,4 +59,13 @@ typedef struct
|
||||
} FSP_TRANSACT_RSP;
|
||||
#pragma warning(pop)
|
||||
|
||||
#if !defined(WINFSP_SYS_DRIVER_H_INTERNAL)
|
||||
NTSTATUS FspFsctlCreateVolume(PSECURITY_DESCRIPTOR SecurityDescriptor, PHANDLE *PHandle);
|
||||
NTSTATUS FspFsctlOpenVolume(PWSTR VolumeName);
|
||||
NTSTATUS FspFsctlDeleteVolume(HANDLE Handle);
|
||||
NTSTATUS FspFsctlTransact(HANDLE Handle,
|
||||
const FSP_TRANSACT_RSP *Responses, size_t NumResponses,
|
||||
const FSP_TRANSACT_REQ *Requests, size_t *NumRequests);
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
15
inc/winfsp/winfsp.h
Normal file
15
inc/winfsp/winfsp.h
Normal file
@ -0,0 +1,15 @@
|
||||
/**
|
||||
* @file winfsp/winfsp.h
|
||||
*
|
||||
* @copyright 2015 Bill Zissimopoulos
|
||||
*/
|
||||
|
||||
#ifndef WINFSP_WINFSP_H_INCLUDED
|
||||
#define WINFSP_WINFSP_H_INCLUDED
|
||||
|
||||
#define WIN32_NO_STATUS
|
||||
#include <windows.h>
|
||||
#undef WIN32_NO_STATUS
|
||||
#include <ntstatus.h>
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user