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>
This commit is contained in:
parent
a7908da4cd
commit
17db99e318
|
@ -26,11 +26,6 @@
|
||||||
#include "mfidl.h"
|
#include "mfidl.h"
|
||||||
#include "rpcproxy.h"
|
#include "rpcproxy.h"
|
||||||
|
|
||||||
#include "initguid.h"
|
|
||||||
#include "mf.h"
|
|
||||||
|
|
||||||
#undef INITGUID
|
|
||||||
#include <guiddef.h>
|
|
||||||
#include "mfapi.h"
|
#include "mfapi.h"
|
||||||
#include "mferror.h"
|
#include "mferror.h"
|
||||||
|
|
||||||
|
@ -43,6 +38,7 @@
|
||||||
WINE_DEFAULT_DEBUG_CHANNEL(mfplat);
|
WINE_DEFAULT_DEBUG_CHANNEL(mfplat);
|
||||||
|
|
||||||
static HINSTANCE mf_instance;
|
static HINSTANCE mf_instance;
|
||||||
|
extern const GUID CLSID_FileSchemePlugin;
|
||||||
|
|
||||||
struct activate_object
|
struct activate_object
|
||||||
{
|
{
|
||||||
|
@ -1032,7 +1028,7 @@ static const struct class_object
|
||||||
}
|
}
|
||||||
class_objects[] =
|
class_objects[] =
|
||||||
{
|
{
|
||||||
{ &CLSID_FileSchemeHandler, &file_scheme_handler_factory.IClassFactory_iface },
|
{ &CLSID_FileSchemePlugin, &file_scheme_handler_factory.IClassFactory_iface },
|
||||||
};
|
};
|
||||||
|
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
|
|
|
@ -16,11 +16,11 @@
|
||||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma makedep header register
|
#pragma makedep register
|
||||||
|
|
||||||
[
|
[
|
||||||
helpstring("File scheme handler"),
|
helpstring("File scheme handler"),
|
||||||
threading(both),
|
threading(both),
|
||||||
uuid(477ec299-1421-4bdd-971f-7ccb933f21ad)
|
uuid(477ec299-1421-4bdd-971f-7ccb933f21ad)
|
||||||
]
|
]
|
||||||
coclass FileSchemeHandler { }
|
coclass FileSchemePlugin { }
|
||||||
|
|
|
@ -34,3 +34,4 @@
|
||||||
#include "mfmediaengine.h"
|
#include "mfmediaengine.h"
|
||||||
|
|
||||||
DEFINE_GUID(MF_SCRUBBING_SERVICE, 0xdd0ac3d8,0x40e3,0x4128,0xac,0x48,0xc0,0xad,0xd0,0x67,0xb7,0x14);
|
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);
|
||||||
|
|
Loading…
Reference in New Issue