uxtheme: Declare some items static.
[wine] / dlls / msi / msi_main.c
1 /*
2  * Implementation of the Microsoft Installer (msi.dll)
3  *
4  * Copyright 2006 Mike McCormack for CodeWeavers
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 #include <stdarg.h>
22
23 #define COBJMACROS
24 #define NONAMELESSUNION
25
26 #include "windef.h"
27 #include "winbase.h"
28 #include "winreg.h"
29 #include "shlwapi.h"
30 #include "msipriv.h"
31
32 #include "wine/debug.h"
33
34 WINE_DEFAULT_DEBUG_CHANNEL(msi);
35
36 static LONG dll_count;
37
38 /* the UI level */
39 INSTALLUILEVEL gUILevel = INSTALLUILEVEL_BASIC;
40 HWND           gUIhwnd = 0;
41 INSTALLUI_HANDLERA gUIHandlerA = NULL;
42 INSTALLUI_HANDLERW gUIHandlerW = NULL;
43 DWORD gUIFilter = 0;
44 LPVOID gUIContext = NULL;
45 WCHAR gszLogFile[MAX_PATH];
46 HINSTANCE msi_hInstance;
47
48 /*
49  * Dll lifetime tracking declaration
50  */
51 static void LockModule(void)
52 {
53     InterlockedIncrement(&dll_count);
54 }
55
56 static void UnlockModule(void)
57 {
58     InterlockedDecrement(&dll_count);
59 }
60
61 /******************************************************************
62  *      DllMain
63  */
64 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
65 {
66     switch (fdwReason)
67     {
68     case DLL_PROCESS_ATTACH:
69         msi_hInstance = hinstDLL;
70         DisableThreadLibraryCalls(hinstDLL);
71         msi_dialog_register_class();
72         break;
73     case DLL_PROCESS_DETACH:
74         msi_dialog_unregister_class();
75         msi_free_handle_table();
76         break;
77     }
78     return TRUE;
79 }
80
81 typedef struct tagIClassFactoryImpl {
82     const IClassFactoryVtbl *lpVtbl;
83     HRESULT (*create_object)( IUnknown*, LPVOID* );
84 } IClassFactoryImpl;
85
86 static HRESULT create_msiserver( IUnknown *pOuter, LPVOID *ppObj )
87 {
88     FIXME("\n");
89     return E_FAIL;
90 }
91
92 static HRESULT WINAPI MsiCF_QueryInterface(LPCLASSFACTORY iface,
93                 REFIID riid,LPVOID *ppobj)
94 {
95     IClassFactoryImpl *This = (IClassFactoryImpl *)iface;
96
97     TRACE("%p %s %p\n",This,debugstr_guid(riid),ppobj);
98
99     if( IsEqualCLSID( riid, &IID_IUnknown ) ||
100         IsEqualCLSID( riid, &IID_IClassFactory ) )
101     {
102         IClassFactory_AddRef( iface );
103         *ppobj = iface;
104         return S_OK;
105     }
106     return E_NOINTERFACE;
107 }
108
109 static ULONG WINAPI MsiCF_AddRef(LPCLASSFACTORY iface)
110 {
111     LockModule();
112     return 2;
113 }
114
115 static ULONG WINAPI MsiCF_Release(LPCLASSFACTORY iface)
116 {
117     UnlockModule();
118     return 1;
119 }
120
121 static HRESULT WINAPI MsiCF_CreateInstance(LPCLASSFACTORY iface,
122     LPUNKNOWN pOuter, REFIID riid, LPVOID *ppobj)
123 {
124     IClassFactoryImpl *This = (IClassFactoryImpl *)iface;
125     IUnknown *unk = NULL;
126     HRESULT r;
127
128     TRACE("%p %p %s %p\n", This, pOuter, debugstr_guid(riid), ppobj);
129
130     r = This->create_object( pOuter, (LPVOID*) &unk );
131     if (SUCCEEDED(r))
132     {
133         r = IUnknown_QueryInterface( unk, riid, ppobj );
134         IUnknown_Release( unk );
135     }
136     return r;
137 }
138
139 static HRESULT WINAPI MsiCF_LockServer(LPCLASSFACTORY iface, BOOL dolock)
140 {
141     TRACE("%p %d\n", iface, dolock);
142
143     if (dolock)
144         LockModule();
145     else
146         UnlockModule();
147
148     return S_OK;
149 }
150
151 static const IClassFactoryVtbl MsiCF_Vtbl =
152 {
153     MsiCF_QueryInterface,
154     MsiCF_AddRef,
155     MsiCF_Release,
156     MsiCF_CreateInstance,
157     MsiCF_LockServer
158 };
159
160 static IClassFactoryImpl MsiServer_CF = { &MsiCF_Vtbl, create_msiserver };
161
162 /******************************************************************
163  * DllGetClassObject          [MSI.@]
164  */
165 HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
166 {
167     TRACE("%s %s %p\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv);
168
169     if ( IsEqualCLSID (rclsid, &CLSID_IMsiServerX2) )
170     {
171         *ppv = (LPVOID) &MsiServer_CF;
172         return S_OK;
173     }
174
175     if( IsEqualCLSID (rclsid, &CLSID_IMsiServerMessage) ||
176         IsEqualCLSID (rclsid, &CLSID_IMsiServer) ||
177         IsEqualCLSID (rclsid, &CLSID_IMsiServerX1) ||
178         IsEqualCLSID (rclsid, &CLSID_IMsiServerX3) )
179     {
180         FIXME("create %s object\n", debugstr_guid( rclsid ));
181     }
182
183     return CLASS_E_CLASSNOTAVAILABLE;
184 }
185
186 /******************************************************************
187  * DllGetVersion              [MSI.@]
188  */
189 HRESULT WINAPI DllGetVersion(DLLVERSIONINFO *pdvi)
190 {
191     TRACE("%p\n",pdvi);
192
193     if (pdvi->cbSize < sizeof(DLLVERSIONINFO))
194         return E_INVALIDARG;
195
196     pdvi->dwMajorVersion = MSI_MAJORVERSION;
197     pdvi->dwMinorVersion = MSI_MINORVERSION;
198     pdvi->dwBuildNumber = MSI_BUILDNUMBER;
199     pdvi->dwPlatformID = DLLVER_PLATFORM_WINDOWS;
200
201     return S_OK;
202 }
203
204 /******************************************************************
205  * DllCanUnloadNow            [MSI.@]
206  */
207 HRESULT WINAPI DllCanUnloadNow(void)
208 {
209     return dll_count == 0 ? S_OK : S_FALSE;
210 }