mfuuid: Add file scheme handler CLSID to static library.

Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
feature/deterministic
Nikolay Sivov 2020-04-27 10:44:38 +03:00 committed by Alexandre Julliard
parent a7908da4cd
commit 17db99e318
3 changed files with 5 additions and 8 deletions

View File

@ -26,11 +26,6 @@
#include "mfidl.h"
#include "rpcproxy.h"
#include "initguid.h"
#include "mf.h"
#undef INITGUID
#include <guiddef.h>
#include "mfapi.h"
#include "mferror.h"
@ -43,6 +38,7 @@
WINE_DEFAULT_DEBUG_CHANNEL(mfplat);
static HINSTANCE mf_instance;
extern const GUID CLSID_FileSchemePlugin;
struct activate_object
{
@ -1032,7 +1028,7 @@ static const struct class_object
}
class_objects[] =
{
{ &CLSID_FileSchemeHandler, &file_scheme_handler_factory.IClassFactory_iface },
{ &CLSID_FileSchemePlugin, &file_scheme_handler_factory.IClassFactory_iface },
};
/*******************************************************************************

View File

@ -16,11 +16,11 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#pragma makedep header register
#pragma makedep register
[
helpstring("File scheme handler"),
threading(both),
uuid(477ec299-1421-4bdd-971f-7ccb933f21ad)
]
coclass FileSchemeHandler { }
coclass FileSchemePlugin { }

View File

@ -34,3 +34,4 @@
#include "mfmediaengine.h"
DEFINE_GUID(MF_SCRUBBING_SERVICE, 0xdd0ac3d8,0x40e3,0x4128,0xac,0x48,0xc0,0xad,0xd0,0x67,0xb7,0x14);
DEFINE_GUID(CLSID_FileSchemePlugin, 0x477ec299,0x1421,0x4bdd,0x97,0x1f,0x7c,0xcb,0x93,0x3f,0x21,0xad);