summaryrefslogtreecommitdiff
path: root/spb/SpbTestTool/sys/device.h
diff options
context:
space:
mode:
Diffstat (limited to 'spb/SpbTestTool/sys/device.h')
-rw-r--r--spb/SpbTestTool/sys/device.h43
1 files changed, 0 insertions, 43 deletions
diff --git a/spb/SpbTestTool/sys/device.h b/spb/SpbTestTool/sys/device.h
deleted file mode 100644
index 40ec9904..00000000
--- a/spb/SpbTestTool/sys/device.h
+++ /dev/null
@@ -1,43 +0,0 @@
-/*++
-
-Copyright (c) Microsoft Corporation. All rights reserved.
-
-Module Name:
-
- device.h
-
-Abstract:
-
- This module contains the function definitions for
- the WDF device.
-
-Environment:
-
- kernel-mode only
-
-Revision History:
-
---*/
-
-#ifndef _DEVICE_H_
-#define _DEVICE_H_
-
-//
-// WDF event callbacks.
-//
-
-EVT_WDF_DEVICE_PREPARE_HARDWARE OnPrepareHardware;
-EVT_WDF_DEVICE_RELEASE_HARDWARE OnReleaseHardware;
-EVT_WDF_DEVICE_D0_ENTRY OnD0Entry;
-EVT_WDF_DEVICE_D0_EXIT OnD0Exit;
-
-EVT_WDF_FILE_CLEANUP OnFileCleanup;
-
-EVT_WDF_IO_QUEUE_IO_DEFAULT OnTopLevelIoDefault;
-EVT_WDF_IO_QUEUE_IO_READ OnIoRead;
-EVT_WDF_IO_QUEUE_IO_WRITE OnIoWrite;
-EVT_WDF_IO_QUEUE_IO_DEVICE_CONTROL OnIoDeviceControl;
-
-EVT_WDF_INTERRUPT_ISR OnInterruptIsr;
-
-#endif \ No newline at end of file