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
ab013bb6
Commit
ab013bb6
authored
Dec 23, 2004
by
Aric Stewart
Committed by
Alexandre Julliard
Dec 23, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added MsiSetExternalUIW.
parent
454422d6
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
msi.c
dlls/msi/msi.c
+8
-1
msi.spec
dlls/msi/msi.spec
+1
-1
No files found.
dlls/msi/msi.c
View file @
ab013bb6
...
...
@@ -838,7 +838,7 @@ INSTALLUI_HANDLERA WINAPI MsiSetExternalUIA(INSTALLUI_HANDLERA puiHandler,
{
INSTALLUI_HANDLERA
prev
=
gUIHandler
;
TRACE
(
"(%p %lx %p)
\n
"
,
puiHandler
,
dwMessageFilter
,
pvContext
);
TRACE
(
"(%p %lx %p)
\n
"
,
puiHandler
,
dwMessageFilter
,
pvContext
);
gUIHandler
=
puiHandler
;
gUIFilter
=
dwMessageFilter
;
gUIContext
=
pvContext
;
...
...
@@ -846,6 +846,13 @@ INSTALLUI_HANDLERA WINAPI MsiSetExternalUIA(INSTALLUI_HANDLERA puiHandler,
return
prev
;
}
INSTALLUI_HANDLERW
WINAPI
MsiSetExternalUIW
(
INSTALLUI_HANDLERW
puiHandler
,
DWORD
dwMessageFilter
,
LPVOID
pvContext
)
{
TRACE
(
" STUB (%p %lx %p)
\n
"
,
puiHandler
,
dwMessageFilter
,
pvContext
);
return
NULL
;
}
UINT
WINAPI
MsiLoadStringA
(
HINSTANCE
hInstance
,
UINT
uID
,
LPSTR
lpBuffer
,
int
nBufferMax
,
DWORD
e
)
{
/*FIXME("%08lx %08lx %08lx %08lx %08lx\n",a,b,c,d,e);*/
...
...
dlls/msi/msi.spec
View file @
ab013bb6
...
...
@@ -134,7 +134,7 @@
134 stub MsiSetComponentStateA
135 stub MsiSetComponentStateW
136 stdcall MsiSetExternalUIA(ptr long ptr)
137 st
ub MsiSetExternalUIW
137 st
dcall MsiSetExternalUIW(ptr long ptr)
138 stdcall MsiSetFeatureStateA(long str long)
139 stdcall MsiSetFeatureStateW(long wstr long)
140 stub MsiSetInstallLevel
...
...
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