Commit 618f9de3 authored by Vincent Povirk's avatar Vincent Povirk Committed by Alexandre Julliard

wmphoto: Add stub dll.

parent 3d66e753
......@@ -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
......
......@@ -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])
......
MODULE = wmphoto.dll
C_SRCS = main.c
/*
* 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;
}
@ stdcall -private DllCanUnloadNow()
@ stdcall -private DllGetClassObject(ptr ptr ptr)
@ stdcall -private DllRegisterServer()
@ stdcall -private DllUnregisterServer()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment