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
e16e15bf
Commit
e16e15bf
authored
Sep 24, 2008
by
Louis Lenders
Committed by
Alexandre Julliard
Sep 25, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Add stub for MsiSetExternalUIRecord.
parent
3a7fcec4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
1 deletion
+16
-1
msi.c
dlls/msi/msi.c
+12
-0
msi.spec
dlls/msi/msi.spec
+1
-1
msi.h
include/msi.h
+3
-0
No files found.
dlls/msi/msi.c
View file @
e16e15bf
...
...
@@ -3021,3 +3021,15 @@ UINT WINAPI MsiIsProductElevatedA( LPCSTR szProduct, BOOL *pfElevated )
*
pfElevated
=
TRUE
;
return
ERROR_SUCCESS
;
}
/***********************************************************************
* MsiSetExternalUIRecord [MSI.@]
*/
UINT
WINAPI
MsiSetExternalUIRecord
(
INSTALLUI_HANDLER_RECORD
puiHandler
,
DWORD
dwMessageFilter
,
LPVOID
pvContext
,
PINSTALLUI_HANDLER_RECORD
ppuiPrevHandler
)
{
FIXME
(
"%p %08x %p %p
\n
"
,
puiHandler
,
dwMessageFilter
,
pvContext
,
ppuiPrevHandler
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
dlls/msi/msi.spec
View file @
e16e15bf
...
...
@@ -274,7 +274,7 @@
278 stub MsiDetermineApplicablePatchesW
279 stub MsiMessageBoxExA
280 stub MsiMessageBoxExW
281 st
ub MsiSetExternalUIRecord
281 st
dcall MsiSetExternalUIRecord(ptr long ptr ptr)
@ stdcall -private DllCanUnloadNow()
@ stdcall -private DllGetClassObject(ptr ptr ptr)
...
...
include/msi.h
View file @
e16e15bf
...
...
@@ -364,6 +364,8 @@ static const WCHAR INSTALLPROPERTY_DISKPROMPTW[] = {'D','i','s','k','P','r','o',
typedef
INT
(
CALLBACK
*
INSTALLUI_HANDLERA
)(
LPVOID
,
UINT
,
LPCSTR
);
typedef
INT
(
CALLBACK
*
INSTALLUI_HANDLERW
)(
LPVOID
,
UINT
,
LPCWSTR
);
typedef
INT
(
CALLBACK
*
INSTALLUI_HANDLER_RECORD
)(
LPVOID
,
UINT
,
MSIHANDLE
);
typedef
INSTALLUI_HANDLER_RECORD
*
PINSTALLUI_HANDLER_RECORD
;
UINT
WINAPI
MsiAdvertiseProductA
(
LPCSTR
,
LPCSTR
,
LPCSTR
,
LANGID
);
UINT
WINAPI
MsiAdvertiseProductW
(
LPCWSTR
,
LPCWSTR
,
LPCWSTR
,
LANGID
);
...
...
@@ -601,6 +603,7 @@ UINT WINAPI MsiIsProductElevatedW(LPCWSTR, BOOL *);
UINT
WINAPI
MsiCloseHandle
(
MSIHANDLE
);
UINT
WINAPI
MsiCloseAllHandles
(
void
);
INSTALLUILEVEL
WINAPI
MsiSetInternalUI
(
INSTALLUILEVEL
,
HWND
*
);
UINT
WINAPI
MsiSetExternalUIRecord
(
INSTALLUI_HANDLER_RECORD
,
DWORD
,
LPVOID
,
PINSTALLUI_HANDLER_RECORD
);
#ifdef __cplusplus
}
...
...
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