summaryrefslogtreecommitdiff
path: root/wpd/WpdHelloWorldDriver/Driver.h
diff options
context:
space:
mode:
authorzlockard <[email protected]>2024-01-31 13:45:54 -0800
committerGitHub <[email protected]>2024-01-31 13:45:54 -0800
commit24f280dc4a700f00f5fbb8f13815b941620adb8e (patch)
tree63243812757e456aadf9fb4cbf07277b1d22eccf /wpd/WpdHelloWorldDriver/Driver.h
parentc657bc76ca6cf64660e12efe2d07a100055d98c0 (diff)
Fixes for sample build errors and updates to the execution script to use new build flags (#1078)
* Fixes for sample build errors * Fix additional sample * Add additional sample * Updated comments in Build-Sample.ps1 * Adjusting exclusions.csv to be accurate for GE. Still issues for NI that we need to understand better * Merge from develop branch * Merge from develop branch * Merge from develop branch * Delete WPD samples * Separate infverif additional options for old vs new WDK * Delete WPD samples entry in our CODEOWNERS file * Fix spelling error * For 22621 WDK Remove the /samples flag --------- Co-authored-by: Zac Lockard <[email protected]> Co-authored-by: Jakob Lichtenberg (170957) <[email protected]>
Diffstat (limited to 'wpd/WpdHelloWorldDriver/Driver.h')
-rw-r--r--wpd/WpdHelloWorldDriver/Driver.h47
1 files changed, 0 insertions, 47 deletions
diff --git a/wpd/WpdHelloWorldDriver/Driver.h b/wpd/WpdHelloWorldDriver/Driver.h
deleted file mode 100644
index 4e126aaa..00000000
--- a/wpd/WpdHelloWorldDriver/Driver.h
+++ /dev/null
@@ -1,47 +0,0 @@
-#pragma once
-
-#include "resource.h"
-#include "WpdHelloWorldDriver.h"
-
-class ATL_NO_VTABLE CDriver :
- public CComObjectRootEx<CComMultiThreadModel>,
- public CComCoClass<CDriver, &CLSID_WpdHelloWorldDriver>,
- public IDriverEntry,
- public IObjectCleanup
-{
-public:
- CDriver();
-
- DECLARE_REGISTRY_RESOURCEID(IDR_WpdHelloWorldDriver)
-
- DECLARE_NOT_AGGREGATABLE(CDriver)
-
- BEGIN_COM_MAP(CDriver)
- COM_INTERFACE_ENTRY(IDriverEntry)
- END_COM_MAP()
-
-public:
- //
- // IDriverEntry
- //
- STDMETHOD (OnInitialize)(
- _In_ IWDFDriver* pDriver
- );
- STDMETHOD (OnDeviceAdd)(
- _In_ IWDFDriver* pDriver,
- _In_ IWDFDeviceInitialize* pDeviceInit
- );
- STDMETHOD_ (void, OnDeinitialize)(
- _In_ IWDFDriver* pDriver
- );
-
- //
- // IObjectCleanup
- //
- STDMETHOD_ (void, OnCleanup)(
- _In_ IWDFObject* pWdfObject
- );
-};
-
-OBJECT_ENTRY_AUTO(__uuidof(WpdHelloWorldDriver), CDriver)
-