Sync with trunk r64509.
[reactos.git] / dll / win32 / inseng / inseng_main.c
1 /*
2 * INSENG Implementation
3 *
4 * Copyright 2006 Mike McCormack
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 */
20
21 #define WIN32_NO_STATUS
22 #define _INC_WINDOWS
23 #define COM_NO_WINDOWS_H
24
25 #define COBJMACROS
26
27 #include <config.h>
28
29 #include <stdarg.h>
30
31 #include <windef.h>
32 #include <winbase.h>
33 //#include "winuser.h"
34 #include <ole2.h>
35 #include <rpcproxy.h>
36 //#include "initguid.h"
37
38 #include <wine/debug.h>
39
40 WINE_DEFAULT_DEBUG_CHANNEL(inseng);
41
42 static HINSTANCE instance;
43
44 BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
45 {
46 switch(fdwReason)
47 {
48 case DLL_WINE_PREATTACH:
49 return FALSE; /* prefer native version */
50 case DLL_PROCESS_ATTACH:
51 instance = hInstDLL;
52 DisableThreadLibraryCalls(hInstDLL);
53 break;
54 }
55 return TRUE;
56 }
57
58 /***********************************************************************
59 * DllGetClassObject (INSENG.@)
60 */
61 HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID iid, LPVOID *ppv)
62 {
63 FIXME("%s %s %p\n", debugstr_guid(rclsid), debugstr_guid(iid), ppv);
64
65 return CLASS_E_CLASSNOTAVAILABLE;
66 }
67
68 /***********************************************************************
69 * DllCanUnloadNow (INSENG.@)
70 */
71 HRESULT WINAPI DllCanUnloadNow(void)
72 {
73 return S_FALSE;
74 }
75
76 /***********************************************************************
77 * DllRegisterServer (INSENG.@)
78 */
79 HRESULT WINAPI DllRegisterServer(void)
80 {
81 return __wine_register_resources( instance );
82 }
83
84 /***********************************************************************
85 * DllUnregisterServer (INSENG.@)
86 */
87 HRESULT WINAPI DllUnregisterServer(void)
88 {
89 return __wine_unregister_resources( instance );
90 }
91
92 BOOL WINAPI CheckTrustEx( LPVOID a, LPVOID b, LPVOID c, LPVOID d, LPVOID e )
93 {
94 FIXME("%p %p %p %p %p\n", a, b, c, d, e );
95 return TRUE;
96 }
97
98 /***********************************************************************
99 * DllInstall (INSENG.@)
100 */
101 HRESULT WINAPI DllInstall(BOOL bInstall, LPCWSTR cmdline)
102 {
103 FIXME("(%s, %s): stub\n", bInstall ? "TRUE" : "FALSE", debugstr_w(cmdline));
104 return S_OK;
105 }