- UID
- 119417
- 帖子
- 10954
- 主題
- 4278
- 精華
- 0
- 積分
- 5349
- 楓幣
- 13324
- 威望
- 5253
- 存款
- 70
- 贊助金額
- 0
- 推廣
- 0
- GP
- 2481
- 閱讀權限
- 150
- 性別
- 保密
- 在線時間
- 1928 小時
- 註冊時間
- 2015-10-18
- 最後登入
- 2024-11-9
|
- // 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
複製代碼 |
|