Module: wine Branch: master Commit: 981f79dbf862b8d46014061f043a1992cc76842f URL: http://source.winehq.org/git/wine.git/?a=commit;h=981f79dbf862b8d46014061f04...
Author: Alexandre Julliard julliard@winehq.org Date: Thu Feb 14 21:35:21 2013 +0100
odbccu32: Remove an unnecessary source file.
---
dlls/odbccu32/Makefile.in | 3 -- dlls/odbccu32/odbccu32_main.c | 42 ----------------------------------------- 2 files changed, 0 insertions(+), 45 deletions(-)
diff --git a/dlls/odbccu32/Makefile.in b/dlls/odbccu32/Makefile.in index cc8bf71..36737ce 100644 --- a/dlls/odbccu32/Makefile.in +++ b/dlls/odbccu32/Makefile.in @@ -1,8 +1,5 @@ MODULE = odbccu32.dll
-C_SRCS = \ - odbccu32_main.c - RC_SRCS = version.rc
@MAKE_DLL_RULES@ diff --git a/dlls/odbccu32/odbccu32_main.c b/dlls/odbccu32/odbccu32_main.c deleted file mode 100644 index 09abf2b..0000000 --- a/dlls/odbccu32/odbccu32_main.c +++ /dev/null @@ -1,42 +0,0 @@ -/* - * ODBC Cursor Library - * - * Copyright 2012 Alistair Leslie-Hughes - * - * 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 "config.h" -#include "wine/port.h" - -#include <stdarg.h> - -#include "windef.h" -#include "winbase.h" - -BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) -{ - switch (fdwReason) - { - case DLL_PROCESS_ATTACH: - DisableThreadLibraryCalls(hinstDLL); - break; - case DLL_PROCESS_DETACH: - break; - } - - return TRUE; -}