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
aecbb11e
Commit
aecbb11e
authored
Feb 22, 2007
by
Aric Stewart
Committed by
Alexandre Julliard
Feb 22, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32: Implement LVM_SETUNICODEFORMAT.
parent
3399c813
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
2 deletions
+19
-2
listview.c
dlls/comctl32/listview.c
+19
-2
No files found.
dlls/comctl32/listview.c
View file @
aecbb11e
...
@@ -7458,7 +7458,23 @@ static HWND LISTVIEW_SetToolTips( LISTVIEW_INFO *infoPtr, HWND hwndNewToolTip)
...
@@ -7458,7 +7458,23 @@ static HWND LISTVIEW_SetToolTips( LISTVIEW_INFO *infoPtr, HWND hwndNewToolTip)
return
hwndOldToolTip
;
return
hwndOldToolTip
;
}
}
/* LISTVIEW_SetUnicodeFormat */
/*
* DESCRIPTION:
* sets the Unicode character format flag for the control
* PARAMETER(S):
* [I] infoPtr :valid pointer to the listview structure
* [I] fUnicode :true to switch to UNICODE false to switch to ANSI
*
* RETURN:
* Old Unicode Format
*/
static
BOOL
LISTVIEW_SetUnicodeFormat
(
LISTVIEW_INFO
*
infoPtr
,
BOOL
fUnicode
)
{
BOOL
rc
=
infoPtr
->
notifyFormat
;
infoPtr
->
notifyFormat
=
(
fUnicode
)
?
NFR_UNICODE
:
NFR_ANSI
;
return
rc
;
}
/* LISTVIEW_SetWorkAreas */
/* LISTVIEW_SetWorkAreas */
/***
/***
...
@@ -9604,7 +9620,8 @@ LISTVIEW_WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
...
@@ -9604,7 +9620,8 @@ LISTVIEW_WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
case
LVM_SETTOOLTIPS
:
case
LVM_SETTOOLTIPS
:
return
(
LRESULT
)
LISTVIEW_SetToolTips
(
infoPtr
,
(
HWND
)
lParam
);
return
(
LRESULT
)
LISTVIEW_SetToolTips
(
infoPtr
,
(
HWND
)
lParam
);
/* case LVM_SETUNICODEFORMAT: */
case
LVM_SETUNICODEFORMAT
:
return
LISTVIEW_SetUnicodeFormat
(
infoPtr
,
wParam
);
/* case LVM_SETVIEW: */
/* case LVM_SETVIEW: */
...
...
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