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
6b6abc88
Commit
6b6abc88
authored
Jul 30, 2004
by
Jacek Caban
Committed by
Alexandre Julliard
Jul 30, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added EM_SCROLLCARET definition in include/richedit.h and handling in
WindowProc.
parent
2169e8da
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
richedit.c
dlls/richedit/richedit.c
+2
-1
richedit.h
include/richedit.h
+3
-0
No files found.
dlls/richedit/richedit.c
View file @
6b6abc88
...
...
@@ -576,8 +576,9 @@ static LRESULT WINAPI RICHED32_WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam,
TRACE_EDIT_MSG32
(
"case EM_SCROLL Passed to edit control"
);
return
CallWindowProcA
(
lpfnEditWndProc
,
hwnd
,
uMsg
,
wParam
,
lParam
);
case
EM_SCROLLCARET
:
case
WM_USER
+
49
:
/* EM_SCROLLCARET too */
TRACE_EDIT_MSG32
(
"EM_SCROLLCARET Passed to edit control"
);
return
CallWindowProcA
(
lpfnEditWndProc
,
hwnd
,
uMsg
,
wParam
,
lParam
);
return
CallWindowProcA
(
lpfnEditWndProc
,
hwnd
,
EM_SCROLLCARET
,
wParam
,
lParam
);
case
EM_SETHANDLE
:
TRACE_EDIT_MSG32
(
"EM_SETHANDLE Passed to edit control"
);
return
CallWindowProcA
(
lpfnEditWndProc
,
hwnd
,
uMsg
,
wParam
,
lParam
);
...
...
include/richedit.h
View file @
6b6abc88
...
...
@@ -48,6 +48,9 @@ static const WCHAR RICHEDIT_CLASS20W[] = { 'R','i','c','h','E','d','i','t','2','
#define RICHEDIT_CLASS RICHEDIT_CLASS10A
#endif
#ifndef EM_SCROLLCARET
#define EM_SCROLLCARET (WM_USER + 49)
#endif
#define EM_CANPASTE (WM_USER + 50)
#define EM_DISPLAYBAND (WM_USER + 51)
#define EM_EXGETSEL (WM_USER + 52)
...
...
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