From b655da64122ea7bb80dc44a4d602598bb39a5fe2 Mon Sep 17 00:00:00 2001 From: Roy Shea Date: Wed, 5 Dec 2007 17:23:41 -0800 Subject: [PATCH] qmgr: Renamed bits_main.c to qmgr_main.c and updated comments. --- dlls/qmgr/Makefile.in | 2 +- dlls/qmgr/{bits_main.c => qmgr_main.c} | 21 +++++++++++---------- 2 files changed, 12 insertions(+), 11 deletions(-) rename dlls/qmgr/{bits_main.c => qmgr_main.c} (77%) diff --git a/dlls/qmgr/Makefile.in b/dlls/qmgr/Makefile.in index 24dc03b92dc..5ac07d349f0 100644 --- a/dlls/qmgr/Makefile.in +++ b/dlls/qmgr/Makefile.in @@ -7,7 +7,7 @@ IMPORTS = kernel32 EXTRALIBS = C_SRCS = \ - bits_main.c + qmgr_main.c @MAKE_DLL_RULES@ diff --git a/dlls/qmgr/bits_main.c b/dlls/qmgr/qmgr_main.c similarity index 77% rename from dlls/qmgr/bits_main.c rename to dlls/qmgr/qmgr_main.c index 76321ca66d4..d00ac2df545 100644 --- a/dlls/qmgr/bits_main.c +++ b/dlls/qmgr/qmgr_main.c @@ -1,5 +1,5 @@ /* - * Implementation of qmgr.dll + * Main DLL interface to Queue Manager (BITS) * * Background Intelligent Transfer Service (BITS) interface. Dll is named * qmgr for backwards compatibility with early versions of BITS. @@ -25,24 +25,25 @@ #include "windef.h" #include "winbase.h" + #include "wine/debug.h" -#include "objbase.h" -WINE_DEFAULT_DEBUG_CHANNEL(bits); +WINE_DEFAULT_DEBUG_CHANNEL(qmgr); +/* Entry point for DLL */ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) { TRACE("(%p, %d, %p)\n", hinstDLL, fdwReason, lpvReserved); switch (fdwReason) { - case DLL_WINE_PREATTACH: - return FALSE; /* prefer native version */ - case DLL_PROCESS_ATTACH: - DisableThreadLibraryCalls(hinstDLL); - break; - case DLL_PROCESS_DETACH: - break; + case DLL_WINE_PREATTACH: + return FALSE; /* prefer native version */ + case DLL_PROCESS_ATTACH: + DisableThreadLibraryCalls(hinstDLL); + break; + case DLL_PROCESS_DETACH: + break; } return TRUE; -- 2.11.4.GIT