mirror of
https://github.com/winfsp/winfsp.git
synced 2025-04-23 17:03:12 -05:00
18 lines
420 B
C
18 lines
420 B
C
/**
|
|
* @file dll/close.c
|
|
*
|
|
* @copyright 2015 Bill Zissimopoulos
|
|
*/
|
|
|
|
#include <dll/library.h>
|
|
|
|
FSP_API NTSTATUS FspFileSystemOpClose(FSP_FILE_SYSTEM *FileSystem,
|
|
FSP_FSCTL_TRANSACT_REQ *Request, FSP_FSCTL_TRANSACT_RSP *Response)
|
|
{
|
|
if (0 != FileSystem->Interface->Close)
|
|
FileSystem->Interface->Close(FileSystem, Request,
|
|
(PVOID)Request->Req.Close.UserContext);
|
|
|
|
return STATUS_SUCCESS;
|
|
}
|