blob: ba37fab240c04e726ba3dffb7fe231ab81925f8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/*++
Copyright (c) Microsoft Corporation. All rights reserved
Abstract:
Monitor Sample driver notification header
Environment:
Kernel mode
--*/
#pragma once
#define TAG_NOTIFY 'yftN'
NTSTATUS
MonitorNfInitialize(
_In_ DEVICE_OBJECT* deviceObject);
NTSTATUS
MonitorNfUninitialize(void);
NTSTATUS MonitorNfNotifyMessage(
_In_ const FWPS_STREAM_DATA* streamBuffer,
_In_ BOOLEAN inbound,
_In_ USHORT localPort,
_In_ USHORT remotePort);
|