DirectPlay Animated Header -- DPMSG_DELETEPLAYERFROMGROUP DirectPlay Animated Header -- DPMSG_DELETEPLAYERFROMGROUP* Microsoft DirectPlay SDK
*Index  *Topic Contents
*Previous Topic: DPMSG_DELETEGROUPFROMGROUP
*Next Topic: DPMSG_DESTROYPLAYERORGROUP


DPMSG_DELETEPLAYERFROMGROUP


Contains information for the DPSYS_DELETEPLAYERFROMGROUP system message. DirectPlay generates this message and sends it to each local player on the computer when a player is deleted from a group.

For a description of the structure members, see the DPMSG_ADDPLAYERTOGROUP structure.

The application can use IDirectPlay3::GetPlayerCaps, IDirectPlay3::GetPlayerName, and IDirectPlay3::GetPlayerData for information about the player involved int his message, or IDirectPlay3::GetGroupName and IDirectPlay3::GetGroupData to get more information about the group involved in this message.

typedef struct{
    DWORD dwType;
    DPID  dpIdGroup;
    DPID  dpIdPlayer;
} DPMSG_ADDPLAYERTOGROUP, FAR *LPDPMSG_ADDPLAYERTOGROUP;
typedef DPMSG_ADDPLAYERTOGROUP DPMSG_DELETEPLAYERFROMGROUP;
Members
dwType
Identifies the message. This member is DPSYS_DELETEPLAYERFROMGROUP.
dpIdGroup
ID of the group from which the player was removed.
dpIdPlayer
ID of the player that was removed from the group.
See Also

IDirectPlay3::DeletePlayerFromGroup

© 1998 Microsoft Corporation. All rights reserved. Terms of Use.

*Top of Page