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

GroupRemoved notification

Notifies the IM client application that current user has been removed (unassigned) from specified messaging group. GroupRemoved is sent in the form of a NOTIFY_SERVER_MESSAGE message.

GroupRemoved = wParam NotifyGroupStructPtr = lParam

Parameters

NotifyGroupStructPtr
Pointer to a variable of NotifyGroupStruct type that contains information on the messaging group.

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 group As NotifyGroupStruct

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

Return Value

The return value is ignored.

Remarks

OldGroup member of the NotifyGroupStruct type contains the name of the group that is being removed.