blob: ada4939a5957b26625d5f653ef75e183d793ec65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#define WIN9X_COMPAT_SPINLOCK
#include <ntddk.h>
#pragma warning(disable:4201) // nameless struct/union warning
#include <stdarg.h>
#include <wdf.h>
#pragma warning(default:4201)
#include <initguid.h> // required for GUID definitions
#include <wdmguid.h> // required for WMILIB_CONTEXT
#include "Reg9656.h"
#include "Public.h"
#include "Private.h"
#include "trace.h"
|