Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
d4303865
Commit
d4303865
authored
Apr 11, 2010
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Apr 12, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Display a MessageBox in MsiMessageBoxEx.
parent
352e2ff6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
2 deletions
+18
-2
msi.c
dlls/msi/msi.c
+16
-0
msi.spec
dlls/msi/msi.spec
+2
-2
No files found.
dlls/msi/msi.c
View file @
d4303865
...
@@ -2149,6 +2149,22 @@ UINT WINAPI MsiMessageBoxW(HWND hWnd, LPCWSTR lpText, LPCWSTR lpCaption, UINT uT
...
@@ -2149,6 +2149,22 @@ UINT WINAPI MsiMessageBoxW(HWND hWnd, LPCWSTR lpText, LPCWSTR lpCaption, UINT uT
return
MessageBoxExW
(
hWnd
,
lpText
,
lpCaption
,
uType
,
wLanguageId
);
return
MessageBoxExW
(
hWnd
,
lpText
,
lpCaption
,
uType
,
wLanguageId
);
}
}
UINT
WINAPI
MsiMessageBoxExA
(
HWND
hWnd
,
LPCSTR
lpText
,
LPCSTR
lpCaption
,
UINT
uType
,
DWORD
unknown
,
WORD
wLanguageId
,
DWORD
f
)
{
FIXME
(
"(%p, %s, %s, %u, 0x%08x, 0x%08x, 0x%08x): semi-stub
\n
"
,
hWnd
,
debugstr_a
(
lpText
),
debugstr_a
(
lpCaption
),
uType
,
unknown
,
wLanguageId
,
f
);
return
MessageBoxExA
(
hWnd
,
lpText
,
lpCaption
,
uType
,
wLanguageId
);
}
UINT
WINAPI
MsiMessageBoxExW
(
HWND
hWnd
,
LPCWSTR
lpText
,
LPCWSTR
lpCaption
,
UINT
uType
,
DWORD
unknown
,
WORD
wLanguageId
,
DWORD
f
)
{
FIXME
(
"(%p, %s, %s, %u, 0x%08x, 0x%08x, 0x%08x): semi-stub
\n
"
,
hWnd
,
debugstr_w
(
lpText
),
debugstr_w
(
lpCaption
),
uType
,
unknown
,
wLanguageId
,
f
);
return
MessageBoxExW
(
hWnd
,
lpText
,
lpCaption
,
uType
,
wLanguageId
);
}
UINT
WINAPI
MsiProvideAssemblyA
(
LPCSTR
szAssemblyName
,
LPCSTR
szAppContext
,
UINT
WINAPI
MsiProvideAssemblyA
(
LPCSTR
szAssemblyName
,
LPCSTR
szAppContext
,
DWORD
dwInstallMode
,
DWORD
dwAssemblyInfo
,
LPSTR
lpPathBuf
,
DWORD
dwInstallMode
,
DWORD
dwAssemblyInfo
,
LPSTR
lpPathBuf
,
LPDWORD
pcchPathBuf
)
LPDWORD
pcchPathBuf
)
...
...
dlls/msi/msi.spec
View file @
d4303865
...
@@ -272,8 +272,8 @@
...
@@ -272,8 +272,8 @@
276 stub MsiSourceListClearMediaDiskW
276 stub MsiSourceListClearMediaDiskW
277 stdcall MsiDetermineApplicablePatchesA(str long ptr)
277 stdcall MsiDetermineApplicablePatchesA(str long ptr)
278 stdcall MsiDetermineApplicablePatchesW(wstr long ptr)
278 stdcall MsiDetermineApplicablePatchesW(wstr long ptr)
279 st
ub MsiMessageBoxExA
279 st
dcall MsiMessageBoxExA(long str str long long long long)
280 st
ub MsiMessageBoxExW
280 st
dcall MsiMessageBoxExW(long wstr wstr long long long long)
281 stdcall MsiSetExternalUIRecord(ptr long ptr ptr)
281 stdcall MsiSetExternalUIRecord(ptr long ptr ptr)
@ stdcall -private DllCanUnloadNow()
@ stdcall -private DllCanUnloadNow()
...
...
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