Do not call us... We will call-back.
You are here: -> Main -> GUI API ->
PROC API_Window_Send_Message STDCALL USES ecx,ebx,esi,edi ARG wnd_handle,call_type ARG msg_type,msg_param1,msg_param2
This function sends a message to one of the destination window callbacks.
| Argument | Type | Description |
|---|---|---|
| wnd_handle | dword | target window handle |
| call_type | dword | what kind of window callback to use |
| msg_type | dword | what kind of message to send |
| msg_param1 | dword | first parameter for sent message |
| msg_param2 | dword | seccond parameter for sent message |
;---------------------------------- ;Known callbacks ;---------------------------------- OS_CALL_BEFORE EQU 1 OS_CALL_DEFAULT EQU 2 OS_CALL_AFTER EQU 3