Changeset 5367 for trunk/src/user32/user32.cpp
- Timestamp:
- Mar 24, 2001, 4:40:56 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/user32.cpp
r5196 r5367 1 /* $Id: user32.cpp,v 1.9 2 2001-02-19 21:43:12sandervl Exp $ */1 /* $Id: user32.cpp,v 1.93 2001-03-24 15:40:56 sandervl Exp $ */ 2 2 3 3 /* … … 1158 1158 return(TRUE); 1159 1159 } 1160 //******************************************************************************1161 //SvL: 24-6-'97 - Added1162 //TODO: Not implemented1163 //******************************************************************************1164 WORD WIN32API GetAsyncKeyState(INT nVirtKey)1165 {1166 dprintf2(("USER32: GetAsyncKeyState Not implemented\n"));1167 return 0;1168 }1169 1160 /***************************************************************************** 1170 1161 * Name : UINT WIN32API GetKBCodePage … … 1205 1196 } 1206 1197 //****************************************************************************** 1207 //SvL: 24-6-'97 - Added1208 1198 //****************************************************************************** 1209 1199 SHORT WIN32API GetKeyState( int nVirtKey) 1210 1200 { 1211 dprintf2(("USER32: GetKeyState %d\n", nVirtKey));1201 dprintf2(("USER32: GetKeyState %x", nVirtKey)); 1212 1202 return O32_GetKeyState(nVirtKey); 1213 1203 } 1204 //****************************************************************************** 1205 //****************************************************************************** 1206 WORD WIN32API GetAsyncKeyState(INT nVirtKey) 1207 { 1208 dprintf2(("USER32: GetAsyncKeyState %x", nVirtKey)); 1209 return O32_GetAsyncKeyState(nVirtKey); 1210 } 1211 1214 1212 /***************************************************************************** 1215 1213 * Name : VOID WIN32API keybd_event
Note:
See TracChangeset
for help on using the changeset viewer.