ksuser: New stub dll.
This commit is contained in:
parent
15d013067d
commit
ee19362f9a
|
@ -1068,6 +1068,7 @@ enable_joy_cpl
|
|||
enable_jscript
|
||||
enable_jsproxy
|
||||
enable_kernel32
|
||||
enable_ksuser
|
||||
enable_ktmw32
|
||||
enable_loadperf
|
||||
enable_localspl
|
||||
|
@ -17034,6 +17035,7 @@ wine_fn_config_dll kernel32 enable_kernel32 clean,implib,mc
|
|||
wine_fn_config_test dlls/kernel32/tests kernel32_test
|
||||
wine_fn_config_dll keyboard.drv16 enable_win16
|
||||
wine_fn_config_dll krnl386.exe16 enable_win16 implib kernel
|
||||
wine_fn_config_dll ksuser enable_ksuser
|
||||
wine_fn_config_dll ktmw32 enable_ktmw32
|
||||
wine_fn_config_dll loadperf enable_loadperf implib
|
||||
wine_fn_config_dll localspl enable_localspl po
|
||||
|
|
|
@ -2943,6 +2943,7 @@ WINE_CONFIG_DLL(kernel32,,[clean,implib,mc])
|
|||
WINE_CONFIG_TEST(dlls/kernel32/tests)
|
||||
WINE_CONFIG_DLL(keyboard.drv16,enable_win16)
|
||||
WINE_CONFIG_DLL(krnl386.exe16,enable_win16,[implib],[kernel])
|
||||
WINE_CONFIG_DLL(ksuser)
|
||||
WINE_CONFIG_DLL(ktmw32)
|
||||
WINE_CONFIG_DLL(loadperf,,[implib])
|
||||
WINE_CONFIG_DLL(localspl,,[po])
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
MODULE = ksuser.dll
|
||||
|
||||
C_SRCS = \
|
||||
main.c
|
|
@ -0,0 +1,4 @@
|
|||
@ stub KsCreateAllocator
|
||||
@ stub KsCreateClock
|
||||
@ stub KsCreatePin
|
||||
@ stub KsCreateTopologyNode
|
|
@ -0,0 +1,38 @@
|
|||
/*
|
||||
* Copyright 2014 Stefan Leichter
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
#include <stdarg.h>
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
|
||||
static HINSTANCE instance;
|
||||
|
||||
BOOL WINAPI DllMain( HINSTANCE hinst, DWORD reason, LPVOID reserved )
|
||||
{
|
||||
switch (reason)
|
||||
{
|
||||
case DLL_WINE_PREATTACH:
|
||||
return FALSE; /* prefer native version */
|
||||
case DLL_PROCESS_ATTACH:
|
||||
instance = hinst;
|
||||
DisableThreadLibraryCalls( hinst );
|
||||
break;
|
||||
}
|
||||
return TRUE;
|
||||
}
|
Loading…
Reference in New Issue