From 0191b9551bae2eb5365b3ae2106a350277620f9f Mon Sep 17 00:00:00 2001 From: Bill Zissimopoulos Date: Wed, 23 Dec 2015 12:09:58 -0800 Subject: [PATCH] dll: Major refactoring: WIP --- inc/winfsp/fsctl.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/inc/winfsp/fsctl.h b/inc/winfsp/fsctl.h index c555ff9f..aed66a60 100644 --- a/inc/winfsp/fsctl.h +++ b/inc/winfsp/fsctl.h @@ -207,6 +207,13 @@ static inline FSP_FSCTL_TRANSACT_RSP *FspFsctlTransactConsumeResponse( } #if !defined(WINFSP_SYS_INTERNAL) +FSP_API NTSTATUS FspFsctlCreateVolume(PWSTR DevicePath, + const FSP_FSCTL_VOLUME_PARAMS *VolumeParams, + PWCHAR VolumePathBuf, SIZE_T VolumePathSize, + PHANDLE PVolumeHandle); +FSP_API NTSTATUS FspFsctlTransact(HANDLE VolumeHandle, + PVOID ResponseBuf, SIZE_T ResponseBufSize, + PVOID RequestBuf, SIZE_T *PRequestBufSize); #endif #endif