blob: b1a5b40a97d80b86554e1715df2ff4dd1b17b70e (
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
|
/*++
Copyright (c) 1990-2000 Microsoft Corporation
Module Name:
driver.h
Abstract:
This is a C version of a very simple sample driver that illustrates
how to use the driver framework and demonstrates best practices.
--*/
#define INITGUID
#include <windows.h>
#include <wdf.h>
#include "device.h"
#include "queue.h"
#ifndef ASSERT
#if DBG
#define ASSERT( exp ) \
((!(exp)) ? \
(KdPrint(( "\n*** Assertion failed: " #exp "\n\n")), \
DebugBreak(), \
FALSE) : \
TRUE)
#else
#define ASSERT( exp )
#endif // DBG
#endif // ASSERT
//
// WDFDRIVER Events
//
DRIVER_INITIALIZE DriverEntry;
EVT_WDF_DRIVER_DEVICE_ADD EchoEvtDeviceAdd;
NTSTATUS
EchoPrintDriverVersion(
);
|