added WM_USER_GET_EMULATION_STATE message
This commit is contained in:
parent
c8b5871ccb
commit
4bb9779abd
1 changed files with 4 additions and 0 deletions
|
@ -91,6 +91,7 @@ int verysleepy__useSendMessage = 1;
|
||||||
|
|
||||||
const UINT WM_VERYSLEEPY_MSG = WM_APP + 0x3117;
|
const UINT WM_VERYSLEEPY_MSG = WM_APP + 0x3117;
|
||||||
const UINT WM_USER_GET_BASE_POINTER = WM_APP + 0x3118; // 0xB118
|
const UINT WM_USER_GET_BASE_POINTER = WM_APP + 0x3118; // 0xB118
|
||||||
|
const UINT WM_USER_GET_EMULATION_STATE = WM_APP + 0x3119; // 0xB119
|
||||||
|
|
||||||
// Respond TRUE to a message with this param value to indicate support.
|
// Respond TRUE to a message with this param value to indicate support.
|
||||||
const WPARAM VERYSLEEPY_WPARAM_SUPPORTED = 0;
|
const WPARAM VERYSLEEPY_WPARAM_SUPPORTED = 0;
|
||||||
|
@ -789,6 +790,9 @@ namespace MainWindow
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case WM_USER_GET_EMULATION_STATE:
|
||||||
|
return (u32)(Core_IsActive() && GetUIState() == UISTATE_INGAME);
|
||||||
|
|
||||||
// Hack to kill the white line underneath the menubar.
|
// Hack to kill the white line underneath the menubar.
|
||||||
// From https://stackoverflow.com/questions/57177310/how-to-paint-over-white-line-between-menu-bar-and-client-area-of-window
|
// From https://stackoverflow.com/questions/57177310/how-to-paint-over-white-line-between-menu-bar-and-client-area-of-window
|
||||||
case WM_NCPAINT:
|
case WM_NCPAINT:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue