oleaut32: Use WIC to decode gif files.
[wine] / dlls / sfc / sfc_main.c
1 /*
2  * Implementation of the System File Checker (Windows File Protection)
3  *
4  * Copyright 2006 Detlef Riekenberg
5  *
6  * This file contains only stubs to get the localspl.dll up and running
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21  */
22
23 /*
24  * Moved to sfc_os.dll since XP
25  *
26  */
27
28 #include <stdarg.h>
29
30 #include "windef.h"
31 #include "winbase.h"
32 #include "winerror.h"
33 #include "wine/debug.h"
34
35 WINE_DEFAULT_DEBUG_CHANNEL(sfc);
36
37 /******************************************************************
38  *      DllMain
39  */
40 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
41 {
42     TRACE("(%p, %d, %p)\n",hinstDLL, fdwReason, lpvReserved);
43
44     switch(fdwReason)
45     {
46         case DLL_WINE_PREATTACH:
47             return FALSE;           /* prefer native version */
48
49         case DLL_PROCESS_ATTACH:
50             DisableThreadLibraryCalls( hinstDLL );
51             break;
52     }
53     return TRUE;
54 }
55
56 DWORD WINAPI SFC_3(DWORD unknown)
57 {
58     FIXME("%x\n", unknown);
59     return 0;
60 }