wmphoto: Register WMP encoder and decoder classes.
Signed-off-by: Vincent Povirk <vincent@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
618f9de37e
commit
aa7e28497c
|
@ -18831,7 +18831,7 @@ wine_fn_config_dll wmiutils enable_wmiutils clean
|
|||
wine_fn_config_test dlls/wmiutils/tests wmiutils_test
|
||||
wine_fn_config_dll wmp enable_wmp clean
|
||||
wine_fn_config_test dlls/wmp/tests wmp_test
|
||||
wine_fn_config_dll wmphoto enable_wmphoto
|
||||
wine_fn_config_dll wmphoto enable_wmphoto clean
|
||||
wine_fn_config_dll wmvcore enable_wmvcore implib
|
||||
wine_fn_config_test dlls/wmvcore/tests wmvcore_test
|
||||
wine_fn_config_dll wnaspi32 enable_wnaspi32 implib
|
||||
|
|
|
@ -3612,7 +3612,7 @@ WINE_CONFIG_DLL(wmiutils,,[clean])
|
|||
WINE_CONFIG_TEST(dlls/wmiutils/tests)
|
||||
WINE_CONFIG_DLL(wmp,,[clean])
|
||||
WINE_CONFIG_TEST(dlls/wmp/tests)
|
||||
WINE_CONFIG_DLL(wmphoto)
|
||||
WINE_CONFIG_DLL(wmphoto,,[clean])
|
||||
WINE_CONFIG_DLL(wmvcore,,[implib])
|
||||
WINE_CONFIG_TEST(dlls/wmvcore/tests)
|
||||
WINE_CONFIG_DLL(wnaspi32,,[implib])
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
MODULE = wmphoto.dll
|
||||
|
||||
C_SRCS = main.c
|
||||
|
||||
IDL_SRCS = wmphoto.idl
|
||||
|
|
|
@ -24,16 +24,20 @@
|
|||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#include "objbase.h"
|
||||
#include "rpcproxy.h"
|
||||
|
||||
#include "wine/debug.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(wincodecs);
|
||||
|
||||
static HINSTANCE WMPHOTO_hInstance;
|
||||
|
||||
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
|
||||
{
|
||||
switch (fdwReason)
|
||||
{
|
||||
case DLL_PROCESS_ATTACH:
|
||||
WMPHOTO_hInstance = hinstDLL;
|
||||
DisableThreadLibraryCalls(hinstDLL);
|
||||
break;
|
||||
case DLL_WINE_PREATTACH:
|
||||
|
@ -56,12 +60,10 @@ HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID * ppv)
|
|||
|
||||
HRESULT WINAPI DllRegisterServer(void)
|
||||
{
|
||||
FIXME("wmphoto: stub\n");
|
||||
return E_NOTIMPL;
|
||||
return __wine_register_resources( WMPHOTO_hInstance );
|
||||
}
|
||||
|
||||
HRESULT WINAPI DllUnregisterServer(void)
|
||||
{
|
||||
FIXME("wmphoto: stub\n");
|
||||
return E_NOTIMPL;
|
||||
return __wine_unregister_resources( WMPHOTO_hInstance );
|
||||
}
|
||||
|
|
|
@ -0,0 +1,42 @@
|
|||
/*
|
||||
* Copyright 2017 Vincent Povirk for CodeWeavers
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#pragma makedep register
|
||||
|
||||
import "unknwn.idl";
|
||||
import "wincodec.idl";
|
||||
|
||||
[
|
||||
helpstring("WIC WMP Decoder"),
|
||||
uuid(a26cec36-234c-4950-ae16-e34aace71d0d),
|
||||
threading(both)
|
||||
]
|
||||
coclass WICWmpDecoder
|
||||
{
|
||||
[default] interface IWICBitmapDecoder;
|
||||
};
|
||||
|
||||
[
|
||||
helpstring("WIC WMP Encoder"),
|
||||
uuid(ac4ce3cb-e1c1-44cd-8215-5a1665509ec2),
|
||||
threading(both)
|
||||
]
|
||||
coclass WICWmpEncoder
|
||||
{
|
||||
[default] interface IWICBitmapEncoder;
|
||||
};
|
Loading…
Reference in New Issue