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
bf6ee621
Commit
bf6ee621
authored
Dec 24, 1998
by
Juergen Schmied
Committed by
Alexandre Julliard
Dec 24, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More messages [LB_*,EM_*] translated 32A from/to 32W.
parent
0a1fbe1b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
12 deletions
+22
-12
winproc.c
windows/winproc.c
+22
-12
No files found.
windows/winproc.c
View file @
bf6ee621
...
...
@@ -435,6 +435,11 @@ INT32 WINPROC_MapMsg32ATo32W( HWND32 hwnd, UINT32 msg, WPARAM32 wParam, LPARAM *
case
CB_FINDSTRING32
:
case
CB_FINDSTRINGEXACT32
:
case
CB_SELECTSTRING32
:
case
LB_DIR32
:
case
LB_ADDFILE32
:
case
LB_FINDSTRING32
:
case
LB_SELECTSTRING32
:
case
EM_REPLACESEL32
:
*
plparam
=
(
LPARAM
)
HEAP_strdupAtoW
(
SystemHeap
,
0
,
(
LPCSTR
)
*
plparam
);
return
(
*
plparam
?
1
:
-
1
);
...
...
@@ -520,13 +525,8 @@ INT32 WINPROC_MapMsg32ATo32W( HWND32 hwnd, UINT32 msg, WPARAM32 wParam, LPARAM *
case
WM_PAINTCLIPBOARD
:
case
WM_SIZECLIPBOARD
:
case
WM_WININICHANGE
:
case
EM_REPLACESEL32
:
case
EM_SETPASSWORDCHAR32
:
case
LB_ADDFILE32
:
case
LB_DIR32
:
case
LB_FINDSTRING32
:
case
LB_SELECTSTRING32
:
FIXME
(
msg
,
"message %s (0x%x) needs translation
\n
"
,
SPY_GetMsgName
(
msg
),
msg
);
FIXME
(
msg
,
"message %s (0x%x) needs translation, please report
\n
"
,
SPY_GetMsgName
(
msg
),
msg
);
return
-
1
;
default:
/* No translation needed */
return
0
;
...
...
@@ -579,6 +579,11 @@ void WINPROC_UnmapMsg32ATo32W( HWND32 hwnd, UINT32 msg, WPARAM32 wParam, LPARAM
case
CB_FINDSTRING32
:
case
CB_FINDSTRINGEXACT32
:
case
CB_SELECTSTRING32
:
case
LB_DIR32
:
case
LB_ADDFILE32
:
case
LB_FINDSTRING32
:
case
LB_SELECTSTRING32
:
case
EM_REPLACESEL32
:
HeapFree
(
SystemHeap
,
0
,
(
void
*
)
lParam
);
break
;
...
...
@@ -650,6 +655,11 @@ INT32 WINPROC_MapMsg32WTo32A( HWND32 hwnd, UINT32 msg, WPARAM32 wParam, LPARAM *
case
CB_FINDSTRING32
:
case
CB_FINDSTRINGEXACT32
:
case
CB_SELECTSTRING32
:
case
LB_DIR32
:
case
LB_ADDFILE32
:
case
LB_FINDSTRING32
:
case
LB_SELECTSTRING32
:
case
EM_REPLACESEL32
:
*
plparam
=
(
LPARAM
)
HEAP_strdupWtoA
(
SystemHeap
,
0
,
(
LPCWSTR
)
*
plparam
);
return
(
*
plparam
?
1
:
-
1
);
...
...
@@ -735,13 +745,8 @@ INT32 WINPROC_MapMsg32WTo32A( HWND32 hwnd, UINT32 msg, WPARAM32 wParam, LPARAM *
case
WM_PAINTCLIPBOARD
:
case
WM_SIZECLIPBOARD
:
case
WM_WININICHANGE
:
case
EM_REPLACESEL32
:
case
EM_SETPASSWORDCHAR32
:
case
LB_ADDFILE32
:
case
LB_DIR32
:
case
LB_FINDSTRING32
:
case
LB_SELECTSTRING32
:
FIXME
(
msg
,
"message %04x needs translation
\n
"
,
msg
);
FIXME
(
msg
,
"message %s (%04x) needs translation, please report
\n
"
,
SPY_GetMsgName
(
msg
),
msg
);
return
-
1
;
default:
/* No translation needed */
return
0
;
...
...
@@ -771,6 +776,11 @@ void WINPROC_UnmapMsg32WTo32A( HWND32 hwnd, UINT32 msg, WPARAM32 wParam, LPARAM
case
CB_FINDSTRING32
:
case
CB_FINDSTRINGEXACT32
:
case
CB_SELECTSTRING32
:
case
LB_DIR32
:
case
LB_ADDFILE32
:
case
LB_FINDSTRING32
:
case
LB_SELECTSTRING32
:
case
EM_REPLACESEL32
:
HeapFree
(
SystemHeap
,
0
,
(
void
*
)
lParam
);
break
;
...
...
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