blob: 0be88b9bc2aff7a8e8b959ea543b9cad2d74d03d (
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
|
/*++
Copyright (c) Microsoft Corporation
Module Name:
sample.h
Abstract:
The shared header file for the sample TrEE miniport driver.
Environment:
Kernel mode
--*/
//
// Device context
//
typedef struct _TREE_SAMPLE_DEVICE_CONTEXT {
WDFDEVICE MasterDevice;
} TREE_SAMPLE_DEVICE_CONTEXT, *PTREE_SAMPLE_DEVICE_CONTEXT;
WDF_DECLARE_CONTEXT_TYPE(TREE_SAMPLE_DEVICE_CONTEXT);
TR_SECURE_SERVICE_CALLBACKS TestServiceCallbacks;
TR_SECURE_SERVICE_CALLBACKS Test2ServiceCallbacks;
|