ReplyMessage
The ReplyMessage
function is used to reply to a message sent through the SendMessage
BOOL ReplyMessage(
LRESULT lResult |
// message-specific
reply |
); |
|
Parameters
lResult
Specifies the
result of the message processing. The possible values are based on the message
sent.
Return Values
If the
calling thread was processing a message sent from another thread or process,
the return value is nonzero.
If the
calling thread was not processing a message sent from another thread or
process, the return value is zero.
Remarks
By calling
this function, the window procedure that receives the message allows the thread
that called SendMessage to continue to run as though the thread
receiving the message had returned control. The thread that calls the ReplyMessage
function also continues to run.
If the
message was not sent through SendMessage or if the message was sent by
the same thread, ReplyMessage has no effect.
See Also