Skip to content
Snippets Groups Projects
Commit 0b0ccb83 authored by Rein Klazes's avatar Rein Klazes Committed by Alexandre Julliard
Browse files

Don't forget to map the message in WINPROC_MapMsg16To32W().

parent 5f48ff3c
No related branches found
No related tags found
No related merge requests found
......@@ -1412,6 +1412,8 @@ LRESULT WINPROC_UnmapMsg16To32A( HWND16 hwnd, UINT msg, WPARAM wParam, LPARAM lP
INT WINPROC_MapMsg16To32W( HWND16 hwnd, UINT16 msg16, WPARAM16 wParam16, UINT *pmsg32,
WPARAM *pwparam32, LPARAM *plparam )
{
*pmsg32=(UINT)msg16;
*pwparam32 = (WPARAM)wParam16;
switch(msg16)
{
case EM_GETLINE16:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment