/*
*
* Hotkey_Subclass.xml
*
*/
/*
Name: OnHotkey_SubclassEvent_MessageNotification
Purpose: Function is called everytime a defined message is sent to the window(in our case WM_HOTKEY)
Parameters: pPlusWnd - The Plus! Window Object the message was received on
nMessage - The message that was received by the window
wParam - 16 bit parameter
lParam - 32 bit parameter
Return: None
*/
function OnHotkey_SubclassEvent_MessageNotification(pPlusWnd, nMessage, wParam, lParam) {
if (_hotkey.ProcessHotkeyMessage(pPlusWnd, nMessage, wParam, lParam)) return -1;
}