msvcp60: Add a stub dll.
This commit is contained in:
parent
65c2fa9b2c
commit
a3172a5dcd
|
@ -15264,6 +15264,7 @@ wine_fn_config_dll mstask enable_mstask
|
|||
wine_fn_config_test dlls/mstask/tests mstask_test
|
||||
wine_fn_config_dll msvcirt enable_msvcirt
|
||||
wine_fn_config_dll msvcp100 enable_msvcp100
|
||||
wine_fn_config_dll msvcp60 enable_msvcp60
|
||||
wine_fn_config_dll msvcp80 enable_msvcp80
|
||||
wine_fn_config_dll msvcp90 enable_msvcp90
|
||||
wine_fn_config_test dlls/msvcp90/tests msvcp90_test
|
||||
|
|
|
@ -2667,6 +2667,7 @@ WINE_CONFIG_DLL(mstask)
|
|||
WINE_CONFIG_TEST(dlls/mstask/tests)
|
||||
WINE_CONFIG_DLL(msvcirt)
|
||||
WINE_CONFIG_DLL(msvcp100)
|
||||
WINE_CONFIG_DLL(msvcp60)
|
||||
WINE_CONFIG_DLL(msvcp80)
|
||||
WINE_CONFIG_DLL(msvcp90)
|
||||
WINE_CONFIG_TEST(dlls/msvcp90/tests)
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
MODULE = msvcp60.dll
|
||||
|
||||
C_SRCS = msvcp60.c
|
||||
|
||||
@MAKE_DLL_RULES@
|
|
@ -0,0 +1,37 @@
|
|||
/*
|
||||
* msvcp60 specific functions
|
||||
*
|
||||
* Copyright 2010 Piotr Caban 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
|
||||
*/
|
||||
|
||||
#include <stdarg.h>
|
||||
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
|
||||
BOOL WINAPI DllMain(HINSTANCE hdll, DWORD reason, LPVOID reserved)
|
||||
{
|
||||
switch (reason)
|
||||
{
|
||||
case DLL_WINE_PREATTACH:
|
||||
return FALSE; /* prefer native version */
|
||||
|
||||
case DLL_PROCESS_ATTACH:
|
||||
DisableThreadLibraryCalls(hdll);
|
||||
}
|
||||
return TRUE;
|
||||
}
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue