USER_PROFILE


typedef struct {
  DWORD dwSize;
  char szUserName[UNLEN+1];
  char szPassword[PWLEN+1];
  char szDomainName[DNLEN+1];
  BOOL fUseCallbacks;
} USER_PROFILE;

This structure contains the profile of the user requested through the RnaGetUserProfile function.

dwSize

The size in bytes of the USER_PROFILE data structure.

szUserName[UNLEN+1]

This field must contain a null-terminated string for the requested user's name on entry.

szPassword[PWLEN+1]

a null-terminated string for the share-leveled security password. The field is ignored for the user-leveled security.

szDomainName[DNLEN+1]

a null-terminated string for the domain name. The empty string can be used for the local machine's domain name.

fUseCallbacks

A boolean indicating whether or not to use callback for this user.