diff options
author | Jean-Francois Mauguit <jfmauguit@mac.com> | 2024-09-24 09:03:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-24 09:03:25 -0400 |
commit | bab614c421ed7ae329d26bf028c4a3b1d2450f5a (patch) | |
tree | 12f17f78986871dd2cfb0a56e5e93b545c1ae0d0 /Src/devices/ifc_deviceprovider.h | |
parent | 4bde6044fddf053f31795b9eaccdd2a5a527d21f (diff) | |
parent | 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d (diff) | |
download | winamp-bab614c421ed7ae329d26bf028c4a3b1d2450f5a.tar.gz |
Merge pull request #5 from WinampDesktop/community
Merge to main
Diffstat (limited to 'Src/devices/ifc_deviceprovider.h')
-rw-r--r-- | Src/devices/ifc_deviceprovider.h | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/Src/devices/ifc_deviceprovider.h b/Src/devices/ifc_deviceprovider.h new file mode 100644 index 00000000..6f5f5da6 --- /dev/null +++ b/Src/devices/ifc_deviceprovider.h @@ -0,0 +1,54 @@ +#ifndef _NULLSOFT_WINAMP_DEVICES_DEVICE_PROVIDER_INTERFACE_HEADER +#define _NULLSOFT_WINAMP_DEVICES_DEVICE_PROVIDER_INTERFACE_HEADER + +#if defined(_MSC_VER) && (_MSC_VER >= 1020) +#pragma once +#endif + +#include <bfc/platform/guid.h> + +// {FAC6EBEE-107A-4133-A620-856A281EC704} +static const GUID IFC_DeviceProvider = +{ 0xfac6ebee, 0x107a, 0x4133, { 0xa6, 0x20, 0x85, 0x6a, 0x28, 0x1e, 0xc7, 0x4 } }; + +#include <bfc/dispatch.h> + +class api_devicemanager; + +class __declspec(novtable) ifc_deviceprovider : public Dispatchable +{ +protected: + ifc_deviceprovider() {} + ~ifc_deviceprovider() {} + +public: + HRESULT BeginDiscovery(api_devicemanager *manager); + HRESULT CancelDiscovery(); + HRESULT GetActive(); + +public: + DISPATCH_CODES + { + API_BEGINDISCOVERY = 10, + API_CANCELDISCOVERY = 20, + API_GETACTIVE = 30, + }; +}; + + +inline HRESULT ifc_deviceprovider::BeginDiscovery(api_devicemanager *manager) +{ + return _call(API_BEGINDISCOVERY, (HRESULT)E_NOTIMPL, manager); +} + +inline HRESULT ifc_deviceprovider::CancelDiscovery() +{ + return _call(API_CANCELDISCOVERY, (HRESULT)E_NOTIMPL); +} + +inline HRESULT ifc_deviceprovider::GetActive() +{ + return _call(API_GETACTIVE, (HRESULT)E_NOTIMPL); +} + +#endif //_NULLSOFT_WINAMP_DEVICES_DEVICE_PROVIDER_INTERFACE_HEADER
\ No newline at end of file |