Alexandre Julliard : msvcrt40: Remove DLL_WINE_PREATTACH.

Alexandre Julliard julliard at winehq.org
Thu Feb 18 16:06:06 CST 2021


Module: wine
Branch: master
Commit: a4ca6f19a3538c4a17b7c0653d625ed5bef660eb
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=a4ca6f19a3538c4a17b7c0653d625ed5bef660eb

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Thu Feb 18 11:46:36 2021 +0100

msvcrt40: Remove DLL_WINE_PREATTACH.

The functions are mostly implemented now.

Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/msvcrt40/Makefile.in |  5 -----
 dlls/msvcrt40/msvcrt40.c  | 37 -------------------------------------
 2 files changed, 42 deletions(-)

diff --git a/dlls/msvcrt40/Makefile.in b/dlls/msvcrt40/Makefile.in
index 576d651c702..1d5dc02627c 100644
--- a/dlls/msvcrt40/Makefile.in
+++ b/dlls/msvcrt40/Makefile.in
@@ -1,6 +1 @@
 MODULE    = msvcrt40.dll
-
-EXTRADLLFLAGS = -mno-cygwin
-
-C_SRCS = \
-	msvcrt40.c
diff --git a/dlls/msvcrt40/msvcrt40.c b/dlls/msvcrt40/msvcrt40.c
deleted file mode 100644
index 122166d1dbf..00000000000
--- a/dlls/msvcrt40/msvcrt40.c
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * msvcrt40 main file
- *
- * Copyright (C) 2007 Louis Lenders
- *
- * 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 inst, DWORD reason, LPVOID reserved )
-{
-   switch (reason)
-   {
-   case DLL_WINE_PREATTACH:
-       return FALSE;  /* prefer native version */
-   case DLL_PROCESS_ATTACH:
-       DisableThreadLibraryCalls( inst );
-       break;
-   }
-   return TRUE;
-}




More information about the wine-cvs mailing list