- 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:
Ged Murphy 2015-12-23 14:45:15 +00:00
parent 9b329d580d
commit d75c6beffe

View file

@ -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,