4 * Copyright 2004 Huw D M Davies
5 * Copyright 2005 Sami Aario
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
32 #include "wine/unicode.h"
33 #include "wine/debug.h"
35 WINE_DEFAULT_DEBUG_CHANNEL(advpack);
37 typedef HRESULT (WINAPI *DLLREGISTER) (void);
40 /***********************************************************************
43 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
45 TRACE("(%p, %ld, %p)\n",hinstDLL, fdwReason, lpvReserved);
47 if (fdwReason == DLL_PROCESS_ATTACH)
48 DisableThreadLibraryCalls(hinstDLL);
53 /***********************************************************************
54 * RunSetupCommand (ADVPACK.@)
56 * Executes an install section in an INF file or a program.
59 * hWnd [I] Handle to parent window, NULL for quiet mode
60 * szCmdName [I] Inf or EXE filename to execute
61 * szInfSection [I] Inf section to install, NULL for DefaultInstall
62 * szDir [I] Path to extracted files
63 * szTitle [I] Title of all dialogs
64 * phEXE [O] Handle of EXE to wait for
65 * dwFlags [I] Flags; see include/advpub.h
66 * pvReserved [I] Reserved
70 * S_ASYNCHRONOUS OK, required to wait on phEXE
71 * ERROR_SUCCESS_REBOOT_REQUIRED Reboot required
72 * E_INVALIDARG Invalid argument given
73 * HRESULT_FROM_WIN32(ERROR_OLD_WIN_VERSION)
74 * Not supported on this Windows version
75 * E_UNEXPECTED Unexpected error
76 * HRESULT_FROM_WIN32(GetLastError()) Some other error
81 HRESULT WINAPI RunSetupCommand( HWND hWnd, LPCSTR szCmdName,
82 LPCSTR szInfSection, LPCSTR szDir,
83 LPCSTR lpszTitle, HANDLE *phEXE,
84 DWORD dwFlags, LPVOID pvReserved )
86 FIXME("(%p, %s, %s, %s, %s, %p, 0x%08lx, %p): stub\n",
87 hWnd, debugstr_a(szCmdName), debugstr_a(szInfSection),
88 debugstr_a(szDir), debugstr_a(lpszTitle),
89 phEXE, dwFlags, pvReserved);
93 /***********************************************************************
94 * LaunchINFSection (ADVPACK.@)
96 void WINAPI LaunchINFSection( HWND hWnd, HINSTANCE hInst, LPCSTR cmdline, INT show )
98 FIXME("(%p %p %s %d): stub\n", hWnd, hInst, debugstr_a(cmdline), show );
101 /***********************************************************************
102 * LaunchINFSectionEx (ADVPACK.@)
104 void WINAPI LaunchINFSectionEx( HWND hWnd, HINSTANCE hInst, LPCSTR cmdline, INT show )
106 FIXME("(%p %p %s %d): stub\n", hWnd, hInst, debugstr_a(cmdline), show );
109 /* this structure very closely resembles parameters of RunSetupCommand() */
117 } SETUPCOMMAND_PARAMS;
119 /***********************************************************************
120 * DoInfInstall (ADVPACK.@)
122 BOOL WINAPI DoInfInstall(const SETUPCOMMAND_PARAMS *setup)
126 void *callback_context;
128 TRACE("%p %s %s %s %s\n", setup->hwnd, debugstr_a(setup->title),
129 debugstr_a(setup->inf_name), debugstr_a(setup->dir),
130 debugstr_a(setup->section_name));
132 hinf = SetupOpenInfFileA(setup->inf_name, NULL, INF_STYLE_WIN4, NULL);
133 if (hinf == INVALID_HANDLE_VALUE) return FALSE;
135 callback_context = SetupInitDefaultQueueCallback(setup->hwnd);
137 ret = SetupInstallFromInfSectionA(NULL, hinf, setup->section_name, SPINST_ALL,
138 NULL, NULL, 0, SetupDefaultQueueCallbackA,
139 callback_context, NULL, NULL);
140 SetupTermDefaultQueueCallback(callback_context);
141 SetupCloseInfFile(hinf);
146 /***********************************************************************
147 * NeedRebootInit (ADVPACK.@)
149 DWORD WINAPI NeedRebootInit(VOID)
155 /***********************************************************************
156 * NeedReboot (ADVPACK.@)
158 BOOL WINAPI NeedReboot(DWORD dwRebootCheck)
160 FIXME("(0x%08lx): stub\n", dwRebootCheck);
164 /***********************************************************************
165 * GetVersionFromFile (ADVPACK.@)
167 HRESULT WINAPI GetVersionFromFile( LPSTR Filename, LPDWORD MajorVer,
168 LPDWORD MinorVer, BOOL Version )
170 TRACE("(%s, %p, %p, %d)\n", Filename, MajorVer, MinorVer, Version);
171 return GetVersionFromFileEx(Filename, MajorVer, MinorVer, Version);
174 /***********************************************************************
175 * GetVersionFromFileEx (ADVPACK.@)
177 HRESULT WINAPI GetVersionFromFileEx( LPSTR lpszFilename, LPDWORD pdwMSVer,
178 LPDWORD pdwLSVer, BOOL bVersion )
183 VS_FIXEDFILEINFO *pFixedVersionInfo;
185 TRACE("(%s, %p, %p, %d)\n", lpszFilename, pdwMSVer, pdwLSVer, bVersion);
189 retval = GetFileVersionInfoSizeA(lpszFilename, &hdl);
190 if (retval == 0 || hdl != 0)
193 pVersionInfo = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, retval);
194 if (pVersionInfo == NULL)
196 GetFileVersionInfoA( lpszFilename, 0, retval, pVersionInfo);
198 boolret = VerQueryValueA(pVersionInfo, "\\",
199 (LPVOID) &pFixedVersionInfo, &uiLength);
201 HeapFree(GetProcessHeap(), 0, pVersionInfo);
205 *pdwMSVer = pFixedVersionInfo->dwFileVersionMS;
206 *pdwLSVer = pFixedVersionInfo->dwFileVersionLS;
213 *pdwMSVer = GetUserDefaultUILanguage();
214 *pdwLSVer = GetACP();
220 /***********************************************************************
221 * RegisterOCX (ADVPACK.@)
223 void WINAPI RegisterOCX( HWND hWnd, HINSTANCE hInst, LPCSTR cmdline, INT show )
225 WCHAR wszBuff[MAX_PATH];
228 DLLREGISTER pfnRegister;
231 TRACE("(%s)\n", cmdline);
233 MultiByteToWideChar(CP_ACP, 0, cmdline, strlen(cmdline), wszBuff, MAX_PATH);
234 if ((pwcComma = strchrW( wszBuff, ',' ))) *pwcComma = 0;
236 TRACE("Parsed DLL name (%s)\n", debugstr_w(wszBuff));
238 hm = LoadLibraryExW(wszBuff, 0, LOAD_WITH_ALTERED_SEARCH_PATH);
241 ERR("Couldn't load DLL: %s\n", debugstr_w(wszBuff));
245 pfnRegister = (DLLREGISTER)GetProcAddress(hm, "DllRegisterServer");
246 if (pfnRegister == NULL)
248 ERR("DllRegisterServer entry point not found\n");
255 ERR("DllRegisterServer entry point returned %08lx\n", hr);
259 TRACE("Successfully registered OCX\n");
264 static HRESULT DELNODE_recurse_dirtree(LPSTR fname, DWORD flags)
266 DWORD fattrs = GetFileAttributesA(fname);
267 HRESULT ret = E_FAIL;
269 if (fattrs & FILE_ATTRIBUTE_DIRECTORY)
272 WIN32_FIND_DATAA w32fd;
274 int fname_len = lstrlenA(fname);
276 /* Generate a path with wildcard suitable for iterating */
277 if (CharPrevA(fname, fname + fname_len) != "\\")
279 lstrcpyA(fname + fname_len, "\\");
282 lstrcpyA(fname + fname_len, "*");
284 if ((hFindFile = FindFirstFileA(fname, &w32fd)) != INVALID_HANDLE_VALUE)
286 /* Iterate through the files in the directory */
287 for (done = FALSE; !done; done = !FindNextFileA(hFindFile, &w32fd))
289 TRACE("%s\n", w32fd.cFileName);
290 if (lstrcmpA(".", w32fd.cFileName) != 0 &&
291 lstrcmpA("..", w32fd.cFileName) != 0)
293 lstrcpyA(fname + fname_len, w32fd.cFileName);
294 if (DELNODE_recurse_dirtree(fname, flags) != S_OK)
300 FindClose(hFindFile);
303 /* We're done with this directory, so restore the old path without wildcard */
304 *(fname + fname_len) = '\0';
308 TRACE("%s: directory\n", fname);
309 if (SetFileAttributesA(fname, FILE_ATTRIBUTE_NORMAL) && RemoveDirectoryA(fname))
317 TRACE("%s: file\n", fname);
318 if (SetFileAttributesA(fname, FILE_ATTRIBUTE_NORMAL) && DeleteFileA(fname))
327 /***********************************************************************
328 * DelNode (ADVPACK.@)
330 * Deletes a file or directory
333 * pszFileOrDirName [I] Name of file or directory to delete
334 * dwFlags [I] Flags; see include/advpub.h
342 * - Native version apparently does a lot of checking to make sure
343 * we're not trying to delete a system directory etc.
345 HRESULT WINAPI DelNode( LPCSTR pszFileOrDirName, DWORD dwFlags )
347 CHAR fname[MAX_PATH];
348 HRESULT ret = E_FAIL;
350 FIXME("(%s, 0x%08lx): flags ignored\n", debugstr_a(pszFileOrDirName), dwFlags);
351 if (pszFileOrDirName && *pszFileOrDirName)
353 lstrcpyA(fname, pszFileOrDirName);
355 /* TODO: Should check for system directory deletion etc. here */
357 ret = DELNODE_recurse_dirtree(fname, dwFlags);
363 /***********************************************************************
364 * DelNodeRunDLL32 (ADVPACK.@)
369 void WINAPI DelNodeRunDLL32( HWND hWnd, HINSTANCE hInst, LPCSTR cmdline, INT show )
371 FIXME("(%s): stub\n", debugstr_a(cmdline));