blob: 25be17d5cd0c81cd031dba38d35df8e932259151 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
/*++
Copyright (c) 1990-2000 Microsoft Corporation All Rights Reserved
Module Name:
public.h
Abstract:
This module contains the common declarations shared by driver
and user applications.
Author:
Environment:
user and kernel
Notes:
Revision History:
--*/
#ifndef __PUBLIC_H
#define __PUBLIC_H
//
// To support ioctls from user-mode:
//
#define LINKNAME_STRING L"\\DosDevices\\Mux"
#define NTDEVICE_STRING L"\\Device\\Mux"
#define MUX_CUSTOM_EVENT 1
#define NOTIFY_SIGNATURE 0xAFCDABAB
typedef struct _NOTIFY_CUSTOM_EVENT {
ULONG uSignature;
ULONG uEvent;
WCHAR szMiniport[1];
} NOTIFY_CUSTOM_EVENT, *PNOTIFY_CUSTOM_EVENT;
#endif
|