NTLMGetGroupList (Compact 2013)

3/28/2014

This function gets a list of groups to which a user belongs.

Syntax

BOOL NTLMGetGroupList(
  WCHAR* userName,
  WCHAR* groupList,
  DWORD* pdwccLen
);

Parameters

  • userName
    [in] Pointer to the user name, case-insensitive.
  • groupList
    [in, out] Pointer to the multi-string buffer containing the group list. This parameter can be set to NULL if the function is to figure out the actual size of the buffer.
  • pdwccLen
    [in, out] On input, pointer to the size of the buffer, in characters. On output, this parameter points to the required or actual buffer size.

Return Value

Returns TRUE to indicate success, and FALSE to indicate failure.

Remarks

This function can be called by privileged applications only.

Requirements

Header

ntlmssp.h

Library

Ntlmssp.lib

See Also

Reference

Authentication Services Functions