mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 18:37:08 +00:00
[XDK]
- hackfix just DRIVER_FS_NOTIFICATION until we decide how we want to declare them - Should fix build svn path=/trunk/; revision=70410
This commit is contained in:
parent
9b329d580d
commit
d75c6beffe
1 changed files with 12 additions and 4 deletions
|
@ -6939,10 +6939,18 @@ typedef struct _REMOTE_LINK_TRACKING_INFORMATION {
|
|||
#define IO_STOP_ON_SYMLINK 0x0008
|
||||
#define IO_MM_PAGING_FILE 0x0010
|
||||
|
||||
typedef VOID
|
||||
(NTAPI *PDRIVER_FS_NOTIFICATION) (
|
||||
_In_ PDEVICE_OBJECT DeviceObject,
|
||||
_In_ BOOLEAN FsActive);
|
||||
//typedef VOID
|
||||
//( *PDRIVER_FS_NOTIFICATION) (
|
||||
// _In_ PDEVICE_OBJECT DeviceObject,
|
||||
// _In_ BOOLEAN FsActive);
|
||||
|
||||
typedef
|
||||
VOID
|
||||
DRIVER_FS_NOTIFICATION(
|
||||
_In_ PDEVICE_OBJECT DeviceObject,
|
||||
_In_ BOOLEAN FsActive
|
||||
);
|
||||
typedef DRIVER_FS_NOTIFICATION *PDRIVER_FS_NOTIFICATION;
|
||||
|
||||
typedef enum _FS_FILTER_SECTION_SYNC_TYPE {
|
||||
SyncTypeOther = 0,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue