Changeset 7353 for trunk/testapp/keyboard/OKeyTest
- Timestamp:
- Nov 16, 2001, 8:36:41 AM (24 years ago)
- Location:
- trunk/testapp/keyboard/OKeyTest
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/testapp/keyboard/OKeyTest/OKeyTest.cpp
r7152 r7353 245 245 default: pszMsg = "unknown"; break; 246 246 } 247 248 // get key name 249 CHAR szBufKey[40]; 250 GetKeyNameText(lParam, szBufKey, sizeof(szBufKey)); 247 251 248 wsprintf(szBuf, "%08xh %16s (%08xh, %08xh) ",252 wsprintf(szBuf, "%08xh %16s (%08xh, %08xh) name=[%s]", 249 253 hwnd, 250 254 pszMsg, 251 255 wParam, 252 lParam); 256 lParam, 257 szBufKey); 253 258 254 259 logString(lpstrOrigin, szBuf); -
trunk/testapp/keyboard/OKeyTest/OKeyTest.h
r7152 r7353 1 // Windows Header Files:2 #include <windows.h>3 4 // C RunTime Header Files5 #include <stdlib.h>6 #include <malloc.h>7 #include <memory.h>8 #include <tchar.h>9 10 1 11 2 #if !defined(AFX_OKEYTEST_H__05D06965_C6DD_11D5_B6AE_004854D1C794__INCLUDED_)
Note:
See TracChangeset
for help on using the changeset viewer.