VC++中窗口過程函數的wParam和lParam區別??是什麼希望解析
我要告訴你的是方法,怎麼去自學,而不是結論:
看到 https://msdn.microsoft.com/en-us/library/ms646280(VS.85).aspx 這裡(google 搜索wm_keydown msdn第一個結果)
wParam
The virtual-key code of the nonsystem key. See Virtual-Key Codes.
wparam是非系統鍵的虛擬鍵碼
lParam
The repeat count, scan code, extended-key flag, context code, previous key-state flag, and transition-state flag, as shown following.
重復的次數、擴展鍵旗標,上下文碼,之前的按鍵狀態旗標
下面的表格告訴你每一位的作用。