- UID
- 119417
- 帖子
- 10957
- 主題
- 4281
- 精華
- 0
- 積分
- 5353
- 楓幣
- 13670
- 威望
- 5256
- 存款
- 70
- 贊助金額
- 0
- 推廣
- 0
- GP
- 684
- 閱讀權限
- 150
- 性別
- 保密
- 在線時間
- 1941 小時
- 註冊時間
- 2015-10-18
- 最後登入
- 2024-11-23
|
- // TwMs 204.2 ICS PostMessage_Focus_Fix
- //修復後台按鍵
- // 就是能解決PostMessage的WM_KEYDOWN消息無法在MapleStory視窗為非Focus狀態時被正確執行的問題
- // Auther: Doem
- // ICS: SmallGCOk
- [ENABLE]
- alloc(PressFixICS,64)
- alloc(PressFix,32)
- PressFixICS:
- cmp [esp+40],020044B9
- jne GetForegroundWindow
- mov [esp+40],PressFix
- jmp GetForegroundWindow
- PressFix:
- test eax,eax
- jmp 020044C1
- 0354AE64:
- DD PressFixICS
- [DISABLE]
- 0354AE64:
- dd GetForegroundWindow
複製代碼 |
|