blob: 1e19eec941d54c1c19d33c57d97fd67cc89bb477 (
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
|
/*++
Module Name:
driver.h
Abstract:
This file contains the driver definitions.
Environment:
User-mode Driver Framework 2
--*/
#include <windows.h>
#include <wdf.h>
#include <initguid.h>
#include <ks.h>
#include <ksmedia.h>
#include "device.h"
#include "queue.h"
#include "trace.h"
EXTERN_C_START
//
// WDFDRIVER Events
//
DRIVER_INITIALIZE DriverEntry;
EVT_WDF_DRIVER_DEVICE_ADD SimpleMediaSourceDriverEvtDeviceAdd;
EVT_WDF_OBJECT_CONTEXT_CLEANUP SimpleMediaSourceDriverEvtDriverContextCleanup;
EXTERN_C_END
|