James Hawkins : advpack: The only flag we don' t handle is RSC_FLAG_UPDHLPDLLS.
Module: wine Branch: refs/heads/master Commit: 8e111502ade2d655b4e0fe0d53f60e9a4c4a0ff5 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=8e111502ade2d655b4e0fe0d... Author: James Hawkins <truiken(a)gmail.com> Date: Thu May 4 00:22:45 2006 -0500 advpack: The only flag we don't handle is RSC_FLAG_UPDHLPDLLS. --- dlls/advpack/install.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/advpack/install.c b/dlls/advpack/install.c index efbf185..544915d 100644 --- a/dlls/advpack/install.c +++ b/dlls/advpack/install.c @@ -871,8 +871,8 @@ HRESULT WINAPI RunSetupCommandW(HWND hWn debugstr_w(szDir), debugstr_w(lpszTitle), phEXE, dwFlags, pvReserved); - if (dwFlags) - FIXME("Unhandled flags: 0x%08lx\n", dwFlags); + if (dwFlags & RSC_FLAG_UPDHLPDLLS) + FIXME("Unhandled flag: RSC_FLAG_UPDHLPDLLS\n"); if (!szCmdName || !szDir) return E_INVALIDARG;
participants (1)
-
Alexandre Julliard