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
961d2641
Commit
961d2641
authored
Mar 19, 2014
by
Nikolay Sivov
Committed by
Alexandre Julliard
Mar 19, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Added AddClipboardFormatListener/RemoveClipboardFormatListener stubs.
parent
038438ad
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
0 deletions
+20
-0
clipboard.c
dlls/user32/clipboard.c
+18
-0
user32.spec
dlls/user32/user32.spec
+2
-0
No files found.
dlls/user32/clipboard.c
View file @
961d2641
...
...
@@ -580,3 +580,21 @@ DWORD WINAPI GetClipboardSequenceNumber(VOID)
TRACE
(
"returning %x
\n
"
,
seqno
);
return
seqno
;
}
/**************************************************************************
* AddClipboardFormatListener (USER32.@)
*/
BOOL
WINAPI
AddClipboardFormatListener
(
HWND
hwnd
)
{
FIXME
(
"%p: stub
\n
"
,
hwnd
);
return
TRUE
;
}
/**************************************************************************
* RemoveClipboardFormatListener (USER32.@)
*/
BOOL
WINAPI
RemoveClipboardFormatListener
(
HWND
hwnd
)
{
FIXME
(
"%p: stub
\n
"
,
hwnd
);
return
TRUE
;
}
dlls/user32/user32.spec
View file @
961d2641
@ stdcall ActivateKeyboardLayout(long long)
@ stdcall AddClipboardFormatListener(long)
@ stdcall AdjustWindowRect(ptr long long)
@ stdcall AdjustWindowRectEx(ptr long long long)
@ stdcall AlignRects(ptr long long long)
...
...
@@ -575,6 +576,7 @@
@ stdcall RegisterWindowMessageW(wstr)
@ stdcall ReleaseCapture()
@ stdcall ReleaseDC(long long)
@ stdcall RemoveClipboardFormatListener(long)
@ stdcall RemoveMenu(long long long)
@ stdcall RemovePropA(long str)
@ stdcall RemovePropW(long wstr)
...
...
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