wmphoto: Add stub dll.

Signed-off-by: Vincent Povirk <vincent@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Vincent Povirk 2017-08-16 16:08:51 -05:00 committed by Alexandre Julliard
parent 3d66e753e7
commit 618f9de37e
5 changed files with 77 additions and 0 deletions

2
configure vendored
View File

@ -1515,6 +1515,7 @@ enable_wmasf
enable_wmi
enable_wmiutils
enable_wmp
enable_wmphoto
enable_wmvcore
enable_wnaspi32
enable_wpc
@ -18830,6 +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 wmvcore enable_wmvcore implib
wine_fn_config_test dlls/wmvcore/tests wmvcore_test
wine_fn_config_dll wnaspi32 enable_wnaspi32 implib

View File

@ -3612,6 +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(wmvcore,,[implib])
WINE_CONFIG_TEST(dlls/wmvcore/tests)
WINE_CONFIG_DLL(wnaspi32,,[implib])

View File

@ -0,0 +1,3 @@
MODULE = wmphoto.dll
C_SRCS = main.c

View File

@ -0,0 +1,67 @@
/*
* 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
*/
#define COBJMAcROS
#include "config.h"
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "objbase.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL(wincodecs);
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
{
switch (fdwReason)
{
case DLL_PROCESS_ATTACH:
DisableThreadLibraryCalls(hinstDLL);
break;
case DLL_WINE_PREATTACH:
return FALSE; /* prefer native version */
}
return TRUE;
}
HRESULT WINAPI DllCanUnloadNow(void)
{
return S_FALSE;
}
HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID * ppv)
{
FIXME("wmphoto: stub\n");
return E_NOTIMPL;
}
HRESULT WINAPI DllRegisterServer(void)
{
FIXME("wmphoto: stub\n");
return E_NOTIMPL;
}
HRESULT WINAPI DllUnregisterServer(void)
{
FIXME("wmphoto: stub\n");
return E_NOTIMPL;
}

View File

@ -0,0 +1,4 @@
@ stdcall -private DllCanUnloadNow()
@ stdcall -private DllGetClassObject(ptr ptr ptr)
@ stdcall -private DllRegisterServer()
@ stdcall -private DllUnregisterServer()