NWFSE_LOGIN_NAME

Returns the login name of the object. Used by NWGetServerConnInfo.

Service:Server Environment
Defined In:nwfse.h

Structure

  typedef struct 
  { 
     nuint32   loginObjectType; 
     nuint8    loginNameLen; 
     pnuint8   loginName; 
  } NWFSE_LOGIN_NAME;
  

Delphi Syntax

  uses calwin32 
  
    NWFSE_LOGIN_NAME  = packed RECORD
       loginObjectType : nuint32;
       loginNameLen : nuint8;
       loginName : pnuint8;
    End;
  

Fields

loginObjectType
Specifies the type of the logged in object (user, group, server, etc.).
loginNameLen
Specifies the length of the login name string.
loginName
Points to the string containing the name of the logged in object.