This topic has not yet been rated - Rate this topic

2.2.3.13 SAMPR_GET_GROUPS_BUFFER

The SAMPR_GET_GROUPS_BUFFER structure represents the members of a group.

typedef struct _SAMPR_GET_GROUPS_BUFFER {
  unsigned long MembershipCount;
  [size_is(MembershipCount)] PGROUP_MEMBERSHIP Groups;
} SAMPR_GET_GROUPS_BUFFER, 
 *PSAMPR_GET_GROUPS_BUFFER;

MembershipCount: The number of elements in Groups. If zero, Groups MUST be ignored. If nonzero, Groups MUST point to at least MembershipCount * sizeof(GROUP_MEMBERSHIP) bytes of memory.

Groups: An array to hold information about the members of the group.

 
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.