Contattaci: +1-877-99-BOPUP (877-992-6787)

MessageTypingEvent notification

Notifies the IM client application that remote user is typing a message. MessageTypingEvent is sent in the form of a NOTIFY_SERVER_MESSAGE message.

MessageTypingEvent = wParam MessageTypingStructPtr = lParam

Parameters

MessageTypingStructPtr
Pointer to a variable of MessageTypingStruct type that contains information on typing event and user who is typing a message.

In order to retrieve information and fill out the variable from the given pointer use the following code:


Private Declare Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory" (ByVal dest As Any, ByVal source As Any, ByVal Bytes As Long)

Dim ptr As Long
Dim event As MessageTypingStruct

ptr = VarPtr(event)
Call CopyMemory(ptr, lParam, Len(event))

Return Value

The return value is ignored.