aboutsummaryrefslogtreecommitdiff
path: root/Src/devices/ifc_devicesupportedcommandstore.h
diff options
context:
space:
mode:
authorJef <jef@targetspot.com>2024-09-24 08:54:57 -0400
committerJef <jef@targetspot.com>2024-09-24 08:54:57 -0400
commit20d28e80a5c861a9d5f449ea911ab75b4f37ad0d (patch)
tree12f17f78986871dd2cfb0a56e5e93b545c1ae0d0 /Src/devices/ifc_devicesupportedcommandstore.h
parent537bcbc86291b32fc04ae4133ce4d7cac8ebe9a7 (diff)
downloadwinamp-20d28e80a5c861a9d5f449ea911ab75b4f37ad0d.tar.gz
Initial community commit
Diffstat (limited to 'Src/devices/ifc_devicesupportedcommandstore.h')
-rw-r--r--Src/devices/ifc_devicesupportedcommandstore.h102
1 files changed, 102 insertions, 0 deletions
diff --git a/Src/devices/ifc_devicesupportedcommandstore.h b/Src/devices/ifc_devicesupportedcommandstore.h
new file mode 100644
index 00000000..26373fd8
--- /dev/null
+++ b/Src/devices/ifc_devicesupportedcommandstore.h
@@ -0,0 +1,102 @@
+#ifndef _NULLSOFT_WINAMP_DEVICES_DEVICE_SUPPORTED_COMMAND_STORE_INTERFACE_HEADER
+#define _NULLSOFT_WINAMP_DEVICES_DEVICE_SUPPORTED_COMMAND_STORE_INTERFACE_HEADER
+
+#if defined(_MSC_VER) && (_MSC_VER >= 1020)
+#pragma once
+#endif
+
+#include <bfc/platform/guid.h>
+
+// {098C1639-7E02-4f03-9F75-B871EC867E61}
+static const GUID IFC_DeviceSupportedCommandStore =
+{ 0x98c1639, 0x7e02, 0x4f03, { 0x9f, 0x75, 0xb8, 0x71, 0xec, 0x86, 0x7e, 0x61 } };
+
+
+#include <bfc/dispatch.h>
+
+class ifc_devicesupportedcommand;
+
+// supports AddRef(), Release(), QueryInterface()
+class __declspec(novtable) ifc_devicesupportedcommandstore : public Dispatchable
+{
+protected:
+ ifc_devicesupportedcommandstore() {}
+ ~ifc_devicesupportedcommandstore() {}
+
+public:
+ HRESULT Add(const char *name, DeviceCommandFlags flags);
+ HRESULT Remove(const char *name);
+ HRESULT RemoveAll();
+
+ HRESULT GetFlags(const char *name, DeviceCommandFlags *flagsOut);
+ HRESULT SetFlags(const char *name, DeviceCommandFlags mask, DeviceCommandFlags value);
+
+ HRESULT Get(const char *name, ifc_devicesupportedcommand **command);
+ HRESULT GetActive(ifc_devicesupportedcommand **command);
+
+ HRESULT Enumerate(ifc_devicesupportedcommandenum **enumerator);
+
+ HRESULT Clone(ifc_devicesupportedcommandstore **instance, BOOL fullCopy);
+
+public:
+ DISPATCH_CODES
+ {
+ API_ADD = 10,
+ API_REMOVE = 20,
+ API_REMOVEALL = 30,
+ API_GETFLAGS = 40,
+ API_SETFLAGS = 50,
+ API_GET = 60,
+ API_GETACTIVE = 70,
+ API_ENUMERATE = 80,
+ API_CLONE = 90,
+ };
+};
+
+
+inline HRESULT ifc_devicesupportedcommandstore::Add(const char *name, DeviceCommandFlags flags)
+{
+ return _call(API_ADD, (HRESULT)E_NOTIMPL, name, flags);
+}
+
+inline HRESULT ifc_devicesupportedcommandstore::Remove(const char *name)
+{
+ return _call(API_REMOVE, (HRESULT)E_NOTIMPL, name);
+}
+
+inline HRESULT ifc_devicesupportedcommandstore::RemoveAll()
+{
+ return _call(API_REMOVEALL, (HRESULT)E_NOTIMPL);
+}
+
+inline HRESULT ifc_devicesupportedcommandstore::GetFlags(const char *name, DeviceCommandFlags *flagsOut)
+{
+ return _call(API_GETFLAGS, (HRESULT)E_NOTIMPL, name, flagsOut);
+}
+
+inline HRESULT ifc_devicesupportedcommandstore::SetFlags(const char *name, DeviceCommandFlags mask, DeviceCommandFlags value)
+{
+ return _call(API_SETFLAGS, (HRESULT)E_NOTIMPL, name, mask, value);
+}
+
+inline HRESULT ifc_devicesupportedcommandstore::Get(const char *name, ifc_devicesupportedcommand **command)
+{
+ return _call(API_GET, (HRESULT)E_NOTIMPL, name, command);
+}
+
+inline HRESULT ifc_devicesupportedcommandstore::GetActive(ifc_devicesupportedcommand **command)
+{
+ return _call(API_GETACTIVE, (HRESULT)E_NOTIMPL, command);
+}
+
+inline HRESULT ifc_devicesupportedcommandstore::Enumerate(ifc_devicesupportedcommandenum **enumerator)
+{
+ return _call(API_ENUMERATE, (HRESULT)E_NOTIMPL, enumerator);
+}
+
+inline HRESULT ifc_devicesupportedcommandstore::Clone(ifc_devicesupportedcommandstore **instance, BOOL fullCopy)
+{
+ return _call(API_CLONE, (HRESULT)E_NOTIMPL, instance, fullCopy);
+}
+
+#endif //_NULLSOFT_WINAMP_DEVICES_DEVICE_SUPPORTED_COMMAND_STORE_INTERFACE_HEADER \ No newline at end of file