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
680b5df5
Commit
680b5df5
authored
Oct 13, 2008
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Oct 14, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shlwapi: Implement SHSendMessageBroadcastA/W.
parent
57122e4d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
2 deletions
+26
-2
ordinal.c
dlls/shlwapi/ordinal.c
+24
-0
shlwapi.spec
dlls/shlwapi/shlwapi.spec
+2
-2
No files found.
dlls/shlwapi/ordinal.c
View file @
680b5df5
...
...
@@ -3692,6 +3692,30 @@ DWORD WINAPI MLClearMLHInstance(DWORD x)
}
/*************************************************************************
* @ [SHLWAPI.432]
*
* See SHSendMessageBroadcastW
*
*/
DWORD
WINAPI
SHSendMessageBroadcastA
(
UINT
uMsg
,
WPARAM
wParam
,
LPARAM
lParam
)
{
return
SendMessageTimeoutA
(
HWND_BROADCAST
,
uMsg
,
wParam
,
lParam
,
SMTO_ABORTIFHUNG
,
2000
,
NULL
);
}
/*************************************************************************
* @ [SHLWAPI.433]
*
* A wrapper for sending Broadcast Messages to all top level Windows
*
*/
DWORD
WINAPI
SHSendMessageBroadcastW
(
UINT
uMsg
,
WPARAM
wParam
,
LPARAM
lParam
)
{
return
SendMessageTimeoutW
(
HWND_BROADCAST
,
uMsg
,
wParam
,
lParam
,
SMTO_ABORTIFHUNG
,
2000
,
NULL
);
}
/*************************************************************************
* @ [SHLWAPI.436]
*
* Convert an Unicode string CLSID into a CLSID.
...
...
dlls/shlwapi/shlwapi.spec
View file @
680b5df5
...
...
@@ -429,8 +429,8 @@
429 stdcall -noname MLIsMLHInstance(long)
430 stdcall -noname MLSetMLHInstance(long long)
431 stdcall -noname MLClearMLHInstance(long)
432 st
ub -noname SHSendMessageBroadcastA
433 st
ub -noname SHSendMessageBroadcastW
432 st
dcall -noname SHSendMessageBroadcastA(long long long)
433 st
dcall -noname SHSendMessageBroadcastW(long long long)
434 stdcall -noname SendMessageTimeoutWrapW(long long long long long long ptr) user32.SendMessageTimeoutW
435 stdcall -noname CLSIDFromProgIDWrap(wstr ptr) ole32.CLSIDFromProgID
436 stdcall -noname CLSIDFromStringWrap(wstr ptr)
...
...
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