mirror of
https://github.com/winfsp/winfsp.git
synced 2025-04-22 08:23:05 -05:00
40 lines
633 B
C
40 lines
633 B
C
/**
|
|
* @file sys/security.c
|
|
*
|
|
* @copyright 2015 Bill Zissimopoulos
|
|
*/
|
|
|
|
#include <sys/driver.h>
|
|
|
|
DRIVER_DISPATCH FspQuerySecurity;
|
|
DRIVER_DISPATCH FspSetSecurity;
|
|
|
|
#ifdef ALLOC_PRAGMA
|
|
#pragma alloc_text(PAGE, FspQuerySecurity)
|
|
#pragma alloc_text(PAGE, FspSetSecurity)
|
|
#endif
|
|
|
|
NTSTATUS
|
|
FspQuerySecurity(
|
|
_In_ PDEVICE_OBJECT DeviceObject,
|
|
_In_ PIRP Irp)
|
|
{
|
|
FSP_ENTER(PAGED_CODE());
|
|
|
|
Result = STATUS_NOT_IMPLEMENTED;
|
|
|
|
FSP_LEAVE("", 0);
|
|
}
|
|
|
|
NTSTATUS
|
|
FspSetSecurity(
|
|
_In_ PDEVICE_OBJECT DeviceObject,
|
|
_In_ PIRP Irp)
|
|
{
|
|
FSP_ENTER(PAGED_CODE());
|
|
|
|
Result = STATUS_NOT_IMPLEMENTED;
|
|
|
|
FSP_LEAVE("", 0);
|
|
}
|