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/omBrowser/ifc_omservicecopier.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/omBrowser/ifc_omservicecopier.h')
-rw-r--r-- | Src/omBrowser/ifc_omservicecopier.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/Src/omBrowser/ifc_omservicecopier.h b/Src/omBrowser/ifc_omservicecopier.h new file mode 100644 index 00000000..2d65b67d --- /dev/null +++ b/Src/omBrowser/ifc_omservicecopier.h @@ -0,0 +1,40 @@ +#ifndef NULLSOFT_WINAMP_OMSERVICE_COPIER_INTERFACE_HEADER +#define NULLSOFT_WINAMP_OMSERVICE_COPIER_INTERFACE_HEADER + +#if defined(_MSC_VER) && (_MSC_VER >= 1020) +#pragma once +#endif + +#include <bfc/dispatch.h> + +// {24E24C55-0A9D-4c54-9589-95FE07FC1FB2} +static const GUID IFC_OmServiceCopier = +{ 0x24e24c55, 0xa9d, 0x4c54, { 0x95, 0x89, 0x95, 0xfe, 0x7, 0xfc, 0x1f, 0xb2 } }; + + +class ifc_omservice; + +// supports AddRef(), Release(), QueryInterface() +class __declspec(novtable) ifc_omservicecopier: public Dispatchable +{ +protected: + ifc_omservicecopier() {} + ~ifc_omservicecopier() {} + +public: + HRESULT CopyTo(ifc_omservice *service, unsigned int *modifiedFlags); + +public: + DISPATCH_CODES + { + API_COPYTO = 10, + }; +}; + + +inline HRESULT ifc_omservicecopier::CopyTo(ifc_omservice *service, unsigned int *modifiedFlags) +{ + return _call(API_COPYTO, (HRESULT)E_NOTIMPL, service, modifiedFlags); +} + +#endif //NULLSOFT_WINAMP_OMSERVICE_COPIER_INTERFACE_HEADER
\ No newline at end of file |