Commit 83178a4f authored by Detlef Riekenberg's avatar Detlef Riekenberg Committed by Alexandre Julliard

msvcr70: Add msvcr70.dll with forwards to msvcrt.dll.

parent 9bad2feb
......@@ -15156,6 +15156,14 @@ wine_fn_append_rule ALL_MAKEFILE_DEPENDS "dlls/msvcirt dlls/msvcirt/__install__
wine_fn_config_makefile dlls/msvcirt "dlls/Makedll.rules \$(MAKEDEP)"
test "x$enable_msvcirt" != xno && wine_fn_append_file ALL_DLL_DIRS "dlls/msvcirt"
wine_fn_append_file ALL_IMPORT_LIBS "dlls/msvcr70/libmsvcr70.$IMPLIBEXT"
wine_fn_append_rule ALL_MAKEFILE_DEPENDS "dlls/msvcr70/libmsvcr70.$IMPLIBEXT dlls/msvcr70/libmsvcr70.cross.a: tools/widl tools/winebuild tools/winegcc include
dlls/msvcr70/libmsvcr70.$IMPLIBEXT dlls/msvcr70/libmsvcr70.cross.a: dlls/msvcr70/msvcr70.spec dlls/msvcr70/Makefile
@cd dlls/msvcr70 && \$(MAKE) \`basename \$@\`
dlls/msvcr70 dlls/msvcr70/__install__ dlls/msvcr70/__install-lib__ dlls/msvcr70/__install-dev__: __builddeps__"
wine_fn_config_makefile dlls/msvcr70 "dlls/Makedll.rules \$(MAKEDEP)"
test "x$enable_msvcr70" != xno && wine_fn_append_file ALL_DLL_DIRS "dlls/msvcr70"
wine_fn_append_file ALL_IMPORT_LIBS "dlls/msvcr71/libmsvcr71.$IMPLIBEXT"
wine_fn_append_rule ALL_MAKEFILE_DEPENDS "dlls/msvcr71/libmsvcr71.$IMPLIBEXT dlls/msvcr71/libmsvcr71.cross.a: tools/widl tools/winebuild tools/winegcc include
dlls/msvcr71/libmsvcr71.$IMPLIBEXT dlls/msvcr71/libmsvcr71.cross.a: dlls/msvcr71/msvcr71.spec dlls/msvcr71/Makefile
......@@ -17597,6 +17605,7 @@ do
"dlls/mstask/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/mstask/Makefile" ;;
"dlls/mstask/tests/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/mstask/tests/Makefile" ;;
"dlls/msvcirt/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/msvcirt/Makefile" ;;
"dlls/msvcr70/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/msvcr70/Makefile" ;;
"dlls/msvcr71/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/msvcr71/Makefile" ;;
"dlls/msvcrt/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/msvcrt/Makefile" ;;
"dlls/msvcrt/tests/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/msvcrt/tests/Makefile" ;;
......
......@@ -2399,6 +2399,7 @@ WINE_CONFIG_DLL(mssip32)
WINE_CONFIG_DLL(mstask)
WINE_CONFIG_TEST(dlls/mstask/tests)
WINE_CONFIG_DLL(msvcirt)
WINE_CONFIG_DLL(msvcr70,,[msvcr70])
WINE_CONFIG_DLL(msvcr71,,[msvcr71])
WINE_CONFIG_DLL(msvcrt,,[msvcrt])
WINE_CONFIG_TEST(dlls/msvcrt/tests)
......
TOPSRCDIR = @top_srcdir@
TOPOBJDIR = ../..
SRCDIR = @srcdir@
VPATH = @srcdir@
MODULE = msvcr70.dll
IMPORTLIB = msvcr70
IMPORTS = msvcrt kernel32
C_SRCS = \
msvcr70.c
@MAKE_DLL_RULES@
@DEPENDENCIES@ # everything below this line is overwritten by make depend
/*
* msvcr70 specific functions
*
* Copyright 2010 Detlef Riekenberg
*
* 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;
}
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