gdi32: Fix the type of two loop variables.
[wine] / dlls / qmgr / bits_main.c
1 /*
2  * Implementation of qmgr.dll
3  *
4  * Background Intelligent Transfer Service (BITS) interface.  Dll is named
5  * qmgr for backwards compatibility with early versions of BITS.
6  *
7  * Copyright 2007 Google (Roy Shea)
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2.1 of the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with this library; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22  */
23
24 #include <stdarg.h>
25
26 #include "windef.h"
27 #include "winbase.h"
28 #include "wine/debug.h"
29 #include "objbase.h"
30
31 WINE_DEFAULT_DEBUG_CHANNEL(bits);
32
33 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
34 {
35     TRACE("(%p, %d, %p)\n", hinstDLL, fdwReason, lpvReserved);
36
37     switch (fdwReason)
38     {
39     case DLL_WINE_PREATTACH:
40         return FALSE;  /* prefer native version */
41     case DLL_PROCESS_ATTACH:
42         DisableThreadLibraryCalls(hinstDLL);
43         break;
44     case DLL_PROCESS_DETACH:
45         break;
46     }
47
48     return TRUE;
49 }