summaryrefslogtreecommitdiff
path: root/wpd/WpdWudfSampleDriver/WpdObjectProperties.h
diff options
context:
space:
mode:
Diffstat (limited to 'wpd/WpdWudfSampleDriver/WpdObjectProperties.h')
-rw-r--r--wpd/WpdWudfSampleDriver/WpdObjectProperties.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/wpd/WpdWudfSampleDriver/WpdObjectProperties.h b/wpd/WpdWudfSampleDriver/WpdObjectProperties.h
deleted file mode 100644
index a63b2021..00000000
--- a/wpd/WpdWudfSampleDriver/WpdObjectProperties.h
+++ /dev/null
@@ -1,36 +0,0 @@
-#pragma once
-
-class WpdObjectProperties
-{
-public:
- WpdObjectProperties();
- ~WpdObjectProperties();
-
- HRESULT Initialize(_In_ FakeDevice *pFakeDevice);
-
- HRESULT DispatchWpdMessage(_In_ REFPROPERTYKEY Command,
- _In_ IPortableDeviceValues* pParams,
- _In_ IPortableDeviceValues* pResults);
-
- HRESULT OnGetSupportedProperties(_In_ IPortableDeviceValues* pParams,
- _In_ IPortableDeviceValues* pResults);
-
- HRESULT OnGetValues(_In_ IPortableDeviceValues* pParams,
- _In_ IPortableDeviceValues* pResults);
-
- HRESULT OnGetAllValues(_In_ IPortableDeviceValues* pParams,
- _In_ IPortableDeviceValues* pResults);
-
- HRESULT OnWriteProperties(_In_ IPortableDeviceValues* pParams,
- _In_ IPortableDeviceValues* pResults);
-
- HRESULT OnGetAttributes(_In_ IPortableDeviceValues* pParams,
- _In_ IPortableDeviceValues* pResults);
-
- HRESULT OnDelete(_In_ IPortableDeviceValues* pParams,
- _In_ IPortableDeviceValues* pResults);
-
-private:
-
- FakeDevice* m_pFakeDevice;
-};