VERSION_INFO

Returns version information about the logical components of a NetWare server.

Service:Server Environment
Defined In:nwserver.h

Structure

  typedef struct 
  { 
     nuint8    serverName [48]; 
     nuint8    fileServiceVersion ; 
     nuint8    fileServiceSubVersion ; 
     nuint16   maximumServiceConnections ; 
     nuint16   connectionsInUse ; 
     nuint16   maxNumberVolumes ; 
     nuint8    revision ; 
     nuint8    SFTLevel ; 
     nuint8    TTSLevel ; 
     nuint16   maxConnectionsEverUsed ; 
     nuint8    accountVersion ; 
     nuint8    VAPVersion ; 
     nuint8    queueVersion ; 
     nuint8    printVersion ; 
     nuint8    virtualConsoleVersion ; 
     nuint8    restrictionLevel ; 
     nuint8    internetBridge ; 
     nuint8    reserved [60]; 
  } VERSION_INFO; 
  

Delphi Structure

  uses calwin32 
   
    VERSION_INFO = packed Record 
      serverName : Array[0..47] Of nuint8;  
      fileServiceVersion : nuint8;  
      fileServiceSubVersion : nuint8;  
      maximumServiceConnections : nuint16;  
      connectionsInUse : nuint16;  
      maxNumberVolumes : nuint16;  
      revision : nuint8;  
      SFTLevel : nuint8;  
      TTSLevel : nuint8;  
      maxConnectionsEverUsed : nuint16;  
      accountVersion : nuint8;  
      VAPVersion : nuint8;  
      queueVersion : nuint8;  
      printVersion : nuint8; 
      virtualConsoleVersion : nuint8;  
      restrictionLevel : nuint8;  
      internetBridge : nuint8;  
      reserved : Array[0..59] Of nuint8; 
    End;
  

Fields

serverName
Specifies the name of the queried server.
fileServiceVersion
Specifies the major NetWare version number of the running server.
fileServiceSubVersion
Specifies the minor NetWare version number of the running server.
maximumServiceConnections
Specifies the maximum number of connection slots (licensed or unlicensed) that the server has allocated since it came up, which is not the same as how many connections the server can support.
connectionsInUse
Specifies how many connections are currently using the server at the time of the query.
maxNumberVolumes
Specifies the maximum number of volumes the server supports.
revision
Specifies the revision level of the NetWare version number running on the server.
SFTLevel
Specifies which SFT level the server operating system is using.
TTSLevel
Specifies which TTS level the server operating system is using.
maxConnectionsEverUsed
Specifies the maximum number of licensed connections in use at one time since the server was installed.
accountVersion
Specifies the accounting version number.
VAPVersion
Specifies the VAP version number, which is only used with NetWare versions prior to 3.0.
queueVersion
Specifies the queuing version number.
printVersion
Specifies the Print Server version number.
virtualConsoleVersion
Specifies the Virtual Console version number.
restrictionLevel
Specifies the Security Restriction version number.
internetBridge
Specifies the Internet Bridge support version number.
reserved
Is reserved for future use.

Remarks

To get product version information (major, minor, and revision), call the NWGetNetWareProductVersion function.