- Timestamp:
- May 29, 2002, 11:56:43 AM (23 years ago)
- Location:
- trunk/src/user32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/oslibwin.cpp
r8350 r8512 1 /* $Id: oslibwin.cpp,v 1.12 0 2002-04-30 18:47:46sandervl Exp $ */1 /* $Id: oslibwin.cpp,v 1.121 2002-05-29 09:56:43 sandervl Exp $ */ 2 2 /* 3 3 * Window API wrappers for OS/2 … … 931 931 USHORT OSLibWinTranslateChar(USHORT usScanCode, ULONG type, USHORT shiftstate) 932 932 { 933 USHORT usResult; 933 934 USHORT sel = GetFS(); 934 usScanCode = WinTranslateChar2(0, &usScanCode, NULL, type, &shiftstate); 935 936 usResult = WinTranslateChar2(0, &usScanCode, NULL, type, &shiftstate); 935 937 SetFS(sel); 936 938 return usScanCode; -
trunk/src/user32/winkeyboard.cpp
r8474 r8512 1 /* $Id: winkeyboard.cpp,v 1.3 4 2002-05-23 07:13:00sandervl Exp $ */1 /* $Id: winkeyboard.cpp,v 1.35 2002-05-29 09:56:43 sandervl Exp $ */ 2 2 /* 3 3 * Win32 <-> PM key translation … … 26 26 #define DBG_LOCALLOG DBG_winkeyboard 27 27 #include "dbglocal.h" 28 29 30 31 32 ODINDEBUGCHANNEL(USER32-WINKBD)33 28 34 29 … … 1196 1191 else ret = 1; 1197 1192 } 1198 dprintf 2(("USER32:ToAscii returned %x, len %d", *lpwTransKey, ret));1193 dprintf(("USER32:ToAscii returned %x, len %d", *lpwTransKey, ret)); 1199 1194 return ret; 1200 1195 }
Note:
See TracChangeset
for help on using the changeset viewer.