msvcp110: Add VS2012 C/C++ runtime.
This commit is contained in:
parent
c19275302f
commit
56538fdf89
|
@ -15973,6 +15973,7 @@ wine_fn_config_dll msvcm80 enable_msvcm80
|
||||||
wine_fn_config_dll msvcm90 enable_msvcm90
|
wine_fn_config_dll msvcm90 enable_msvcm90
|
||||||
wine_fn_config_dll msvcp100 enable_msvcp100
|
wine_fn_config_dll msvcp100 enable_msvcp100
|
||||||
wine_fn_config_test dlls/msvcp100/tests msvcp100_test
|
wine_fn_config_test dlls/msvcp100/tests msvcp100_test
|
||||||
|
wine_fn_config_dll msvcp110 enable_msvcp110
|
||||||
wine_fn_config_dll msvcp60 enable_msvcp60
|
wine_fn_config_dll msvcp60 enable_msvcp60
|
||||||
wine_fn_config_test dlls/msvcp60/tests msvcp60_test
|
wine_fn_config_test dlls/msvcp60/tests msvcp60_test
|
||||||
wine_fn_config_dll msvcp70 enable_msvcp70
|
wine_fn_config_dll msvcp70 enable_msvcp70
|
||||||
|
|
|
@ -2856,6 +2856,7 @@ WINE_CONFIG_DLL(msvcm80)
|
||||||
WINE_CONFIG_DLL(msvcm90)
|
WINE_CONFIG_DLL(msvcm90)
|
||||||
WINE_CONFIG_DLL(msvcp100)
|
WINE_CONFIG_DLL(msvcp100)
|
||||||
WINE_CONFIG_TEST(dlls/msvcp100/tests)
|
WINE_CONFIG_TEST(dlls/msvcp100/tests)
|
||||||
|
WINE_CONFIG_DLL(msvcp110)
|
||||||
WINE_CONFIG_DLL(msvcp60)
|
WINE_CONFIG_DLL(msvcp60)
|
||||||
WINE_CONFIG_TEST(dlls/msvcp60/tests)
|
WINE_CONFIG_TEST(dlls/msvcp60/tests)
|
||||||
WINE_CONFIG_DLL(msvcp70)
|
WINE_CONFIG_DLL(msvcp70)
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
MODULE = msvcp110.dll
|
||||||
|
|
||||||
|
C_SRCS = msvcp110.c
|
||||||
|
|
||||||
|
@MAKE_DLL_RULES@
|
|
@ -0,0 +1,37 @@
|
||||||
|
/*
|
||||||
|
* msvcp110 specific functions
|
||||||
|
*
|
||||||
|
* Copyright 2013 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 <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
|
@ -44,6 +44,7 @@ my @dll_groups =
|
||||||
"msvcrt",
|
"msvcrt",
|
||||||
"msvcp90",
|
"msvcp90",
|
||||||
"msvcp100",
|
"msvcp100",
|
||||||
|
"msvcp110",
|
||||||
"msvcp71",
|
"msvcp71",
|
||||||
"msvcp80",
|
"msvcp80",
|
||||||
"msvcp70",
|
"msvcp70",
|
||||||
|
|
Loading…
Reference in New Issue