mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
[FLTMGR]
- Add a header for sharing data between fltlib and fltmgr svn path=/trunk/; revision=72590
This commit is contained in:
parent
70a9414c61
commit
6cc00bad38
1 changed files with 16 additions and 0 deletions
16
reactos/sdk/include/reactos/drivers/fltmgr/fltmgr_shared.h
Normal file
16
reactos/sdk/include/reactos/drivers/fltmgr/fltmgr_shared.h
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#define IOCTL_LOAD_FILTER CTL_CODE(FILE_DEVICE_DISK_FILE_SYSTEM, 0x01, 0, FILE_WRITE_DATA) //88004
|
||||||
|
#define IOCTL_UNLOAD_FILTER CTL_CODE(FILE_DEVICE_DISK_FILE_SYSTEM, 0x02, 0, FILE_WRITE_DATA) //88008
|
||||||
|
#define IOCTL_INIT_FIND CTL_CODE(FILE_DEVICE_DISK_FILE_SYSTEM, 0x03, 0, FILE_READ_DATA) //8400C
|
||||||
|
|
||||||
|
//84024 find first
|
||||||
|
//84028 find next
|
||||||
|
|
||||||
|
|
||||||
|
typedef struct _FILTER_NAME
|
||||||
|
{
|
||||||
|
USHORT Length;
|
||||||
|
WCHAR FilterName[1];
|
||||||
|
|
||||||
|
} FILTER_NAME, *PFILTER_NAME;
|
Loading…
Reference in a new issue