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
cfcc9a75
Commit
cfcc9a75
authored
Feb 02, 2006
by
Stefan Leichter
Committed by
Alexandre Julliard
Feb 02, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shlwapi: Added stub for ShellMessageBoxWrapW.
parent
66a303d1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
1 deletion
+26
-1
ordinal.c
dlls/shlwapi/ordinal.c
+25
-0
shlwapi.spec
dlls/shlwapi/shlwapi.spec
+1
-1
No files found.
dlls/shlwapi/ordinal.c
View file @
cfcc9a75
...
...
@@ -4395,3 +4395,28 @@ DWORD WINAPI GetUIVersion(void)
}
return
version
;
}
/***********************************************************************
* ShellMessageBoxWrapW [SHLWAPI.388]
*
* loads a string resource for a module, displays the string in a
* message box and writes it into the logfile
*
* PARAMS
* mod [I] the module containing the string resource
* unknown1 [I] FIXME
* uId [I] the id of the string resource
* title [I] the title of the message box
* unknown2 [I] FIXME
* filename [I] name of the logfile
*
* RETURNS
* FIXME
*/
BOOL
WINAPI
ShellMessageBoxWrapW
(
HMODULE
mod
,
DWORD
unknown1
,
UINT
uId
,
LPCWSTR
title
,
DWORD
unknown2
,
LPCWSTR
filename
)
{
FIXME
(
"%p %lx %d %s %lx %s
\n
"
,
mod
,
unknown1
,
uId
,
debugstr_w
(
title
),
unknown2
,
debugstr_w
(
filename
));
return
TRUE
;
}
dlls/shlwapi/shlwapi.spec
View file @
cfcc9a75
...
...
@@ -385,7 +385,7 @@
385 stub -noname SHLoadRawAccelerators
386 stub -noname SHQueryRawAccelerator
387 stub -noname SHQueryRawAcceleratorMsg
388 st
ub -noname ShellMessageBoxWrapW
388 st
dcall -noname ShellMessageBoxWrapW(ptr long long wstr long wstr)
389 stdcall -noname GetSaveFileNameWrapW(ptr)
390 stdcall -noname WNetRestoreConnectionWrapW(long wstr)
391 stdcall -noname WNetGetLastErrorWrapW(ptr ptr long ptr long)
...
...
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