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
aa601fdf
Commit
aa601fdf
authored
Oct 31, 2018
by
Nikolay Sivov
Committed by
Alexandre Julliard
Oct 31, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32/edit: Add missing message macros.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
d19e34d8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
edit.c
dlls/comctl32/edit.c
+0
-2
commctrl.h
include/commctrl.h
+7
-0
No files found.
dlls/comctl32/edit.c
View file @
aa601fdf
...
@@ -23,9 +23,7 @@
...
@@ -23,9 +23,7 @@
*
*
* TODO:
* TODO:
* - EDITBALLOONTIP structure
* - EDITBALLOONTIP structure
* - EM_GETCUEBANNER/Edit_GetCueBannerText
* - EM_HIDEBALLOONTIP/Edit_HideBalloonTip
* - EM_HIDEBALLOONTIP/Edit_HideBalloonTip
* - EM_SETCUEBANNER/Edit_SetCueBannerText
* - EM_SHOWBALLOONTIP/Edit_ShowBalloonTip
* - EM_SHOWBALLOONTIP/Edit_ShowBalloonTip
* - EM_GETIMESTATUS, EM_SETIMESTATUS
* - EM_GETIMESTATUS, EM_SETIMESTATUS
* - EN_ALIGN_LTR_EC
* - EN_ALIGN_LTR_EC
...
...
include/commctrl.h
View file @
aa601fdf
...
@@ -5259,6 +5259,13 @@ typedef struct _tagEDITBALLOONTIP
...
@@ -5259,6 +5259,13 @@ typedef struct _tagEDITBALLOONTIP
#define EM_NOSETFOCUS (ECM_FIRST + 7)
#define EM_NOSETFOCUS (ECM_FIRST + 7)
#define EM_TAKEFOCUS (ECM_FIRST + 8)
#define EM_TAKEFOCUS (ECM_FIRST + 8)
#define Edit_SetCueBannerText(hwnd, text) \
(BOOL)SNDMSG((hwnd), EM_SETCUEBANNER, 0, (LPARAM)(text))
#define Edit_SetCueBannerTextFocused(hwnd, text, drawfocused) \
(BOOL)SNDMSG((hwnd), EM_SETCUEBANNER, (WPARAM)(drawfocused), (LPARAM)(text))
#define Edit_GetCueBannerText(hwnd, buff, buff_size) \
(BOOL)SNDMSG((hwnd), EM_GETCUEBANNER, (WPARAM)(buff), (LPARAM)(buff_size))
/**************************************************************************
/**************************************************************************
* Listbox control
* Listbox control
*/
*/
...
...
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