diff options
| author | Philip Froese <[email protected]> | 2016-10-19 13:25:24 -0700 |
|---|---|---|
| committer | Philip Froese <[email protected]> | 2016-10-19 13:25:24 -0700 |
| commit | 7995677b7883bad51cbadd6bd1d1674dbd689c38 (patch) | |
| tree | bbde63ce3535c264de5202e337a86fb0606819b7 /usb/UcmTcpciCxClientSample/Driver.h | |
| parent | ce06de38a6daee9815dbf7eb8ddd8f335612ccc0 (diff) | |
Adding UcmTcpciCxClientSample
Diffstat (limited to 'usb/UcmTcpciCxClientSample/Driver.h')
| -rw-r--r-- | usb/UcmTcpciCxClientSample/Driver.h | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/usb/UcmTcpciCxClientSample/Driver.h b/usb/UcmTcpciCxClientSample/Driver.h new file mode 100644 index 00000000..4e450119 --- /dev/null +++ b/usb/UcmTcpciCxClientSample/Driver.h @@ -0,0 +1,45 @@ +/*++ + +Module Name: + + Driver.h + +Abstract: + + This file contains the driver declarations. + +Environment: + + Kernel-mode Driver Framework + +--*/ + +#include <ntddk.h> +#include <wdf.h> +#include <initguid.h> +#include <wdmguid.h> +#define RESHUB_USE_HELPER_ROUTINES +#include <reshub.h> +#include <spb.h> +#include <UcmTcpciCx.h> + +#include "I2C.h" +#include "Device.h" +#include "Alert.h" +#include "PortControllerInterface.h" +#include "Queue.h" +#include "Register.h" +#include "Trace.h" + +EXTERN_C_START + +DRIVER_INITIALIZE +DriverEntry; + +EVT_WDF_DRIVER_DEVICE_ADD +EvtDeviceAdd; + +EVT_WDF_OBJECT_CONTEXT_CLEANUP +EvtDriverContextCleanup; + +EXTERN_C_END |
