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
066a8f44
Commit
066a8f44
authored
Nov 11, 2008
by
Hans Leidekker
Committed by
Alexandre Julliard
Nov 11, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Add a stub implementation of ChangeWindowMessageFilter.
parent
0a11bd81
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
message.c
dlls/user32/message.c
+9
-0
user32.spec
dlls/user32/user32.spec
+1
-0
No files found.
dlls/user32/message.c
View file @
066a8f44
...
...
@@ -3701,3 +3701,12 @@ BOOL WINAPI IsHungAppWindow( HWND hWnd )
SERVER_END_REQ
;
return
ret
;
}
/******************************************************************
* ChangeWindowMessageFilter (USER32.@)
*/
BOOL
WINAPI
ChangeWindowMessageFilter
(
UINT
message
,
DWORD
flag
)
{
FIXME
(
"%x %08x
\n
"
,
message
,
flag
);
return
TRUE
;
}
dlls/user32/user32.spec
View file @
066a8f44
...
...
@@ -37,6 +37,7 @@
@ stdcall ChangeDisplaySettingsW(ptr long)
@ stdcall ChangeMenuA(long long ptr long long)
@ stdcall ChangeMenuW(long long ptr long long)
@ stdcall ChangeWindowMessageFilter(long long)
@ stdcall CharLowerA(str)
@ stdcall CharLowerBuffA(str long)
@ stdcall CharLowerBuffW(wstr 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