msvcr110: Add VS2012 C/C++ runtime.
This commit is contained in:
parent
2722f2cbfc
commit
0e7f39439d
|
@ -15981,6 +15981,7 @@ wine_fn_config_dll msvcp90 enable_msvcp90
|
|||
wine_fn_config_test dlls/msvcp90/tests msvcp90_test
|
||||
wine_fn_config_dll msvcr100 enable_msvcr100
|
||||
wine_fn_config_test dlls/msvcr100/tests msvcr100_test
|
||||
wine_fn_config_dll msvcr110 enable_msvcr110
|
||||
wine_fn_config_dll msvcr70 enable_msvcr70 implib
|
||||
wine_fn_config_dll msvcr71 enable_msvcr71 implib
|
||||
wine_fn_config_dll msvcr80 enable_msvcr80
|
||||
|
|
|
@ -2864,6 +2864,7 @@ WINE_CONFIG_DLL(msvcp90)
|
|||
WINE_CONFIG_TEST(dlls/msvcp90/tests)
|
||||
WINE_CONFIG_DLL(msvcr100)
|
||||
WINE_CONFIG_TEST(dlls/msvcr100/tests)
|
||||
WINE_CONFIG_DLL(msvcr110)
|
||||
WINE_CONFIG_DLL(msvcr70,,[implib])
|
||||
WINE_CONFIG_DLL(msvcr71,,[implib])
|
||||
WINE_CONFIG_DLL(msvcr80)
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
MODULE = msvcr110.dll
|
||||
IMPORTS = msvcrt
|
||||
MODCFLAGS = @BUILTINFLAG@
|
||||
EXTRAINCL = -I$(top_srcdir)/include/msvcrt
|
||||
|
||||
C_SRCS = \
|
||||
msvcr110.c
|
||||
|
||||
@MAKE_DLL_RULES@
|
|
@ -0,0 +1,44 @@
|
|||
/*
|
||||
* msvcr110 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 "stdlib.h"
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#include "wine/debug.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(msvcr110);
|
||||
|
||||
/*********************************************************************
|
||||
* DllMain (MSVCR110.@)
|
||||
*/
|
||||
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