Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
69c02d0b
Commit
69c02d0b
authored
May 14, 2008
by
James Hawkins
Committed by
Alexandre Julliard
May 14, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Create the MSI hidden window on demand.
parent
c154b025
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
dialog.c
dlls/msi/dialog.c
+3
-0
msi_main.c
dlls/msi/msi_main.c
+0
-1
No files found.
dlls/msi/dialog.c
View file @
69c02d0b
...
...
@@ -3482,6 +3482,9 @@ msi_dialog *msi_dialog_create( MSIPACKAGE* package,
TRACE
(
"%p %s
\n
"
,
package
,
debugstr_w
(
szDialogName
));
if
(
!
hMsiHiddenWindow
)
msi_dialog_register_class
();
/* allocate the structure for the dialog to use */
dialog
=
msi_alloc_zero
(
sizeof
*
dialog
+
sizeof
(
WCHAR
)
*
strlenW
(
szDialogName
)
);
if
(
!
dialog
)
...
...
dlls/msi/msi_main.c
View file @
69c02d0b
...
...
@@ -72,7 +72,6 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
case
DLL_PROCESS_ATTACH
:
msi_hInstance
=
hinstDLL
;
DisableThreadLibraryCalls
(
hinstDLL
);
msi_dialog_register_class
();
break
;
case
DLL_PROCESS_DETACH
:
if
(
msi_typelib
)
ITypeLib_Release
(
msi_typelib
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment