PEER_EVENT_MEMBER_CHANGE_DATA structure (p2p.h)

The PEER_EVENT_MEMBER_CHANGE_DATA structure contains data that describes a change in the status of a peer group member.

Syntax

typedef struct peer_event_member_change_data_tag {
  DWORD                   dwSize;
  PEER_MEMBER_CHANGE_TYPE changeType;
  PWSTR                   pwzIdentity;
} PEER_EVENT_MEMBER_CHANGE_DATA, *PPEER_EVENT_MEMBER_CHANGE_DATA;

Members

dwSize

Contains the size of this structure, in bytes.

changeType

PEER_MEMBER_CHANGE_TYPE enumeration value that specifies the change event that occurred, such as a member joining or leaving.

pwzIdentity

Pointer to a Unicode string that contains the peer name of the peer group member.

Requirements

Requirement Value
Minimum supported client Windows XP with SP2 [desktop apps only],Windows XP with SP1 with the Advanced Networking Pack forWindows XP
Minimum supported server None supported
Header p2p.h

See also

PEER_GROUP_EVENT_DATA

PEER_GROUP_EVENT_REGISTRATION

PEER_MEMBER_CHANGE_TYPE