SERVER_AND_VCONSOLE_INFO

Service:Server Environment
Defined In:nwfse.h

Structure

  typedef struct 
  { 
     nuint32   currentServerTime ; 
     nuint8    vconsoleVersion ; 
     nuint8    vconsoleRevision ; 
  } SERVER_AND_VCONSOLE_INFO; 
  

Delphi Structure

  uses calwin32 
   
    SERVER_AND_VCONSOLE_INFO = packed Record 
      currentServerTime : nuint32; 
      vconsoleVersion : nuint8; 
      vconsoleRevision : nuint8 
    End; 
  

Fields

currentServerTime
Specifies the time in ticks (about 1/18 second) since the server was brought up. When currentServerTime reaches 0xFFFFFFFF, it wraps to 0.

NOTE:The tick count is derived from the original PC NTSC crystal frequency of 14.317180 MHz divided by 12 which is about 1.193MHz. The PC’s 8253/8254 PIT further divides this clock by 65536 to generate an interrupt 18.207 times a second which approximates to one interrupt every 54.925 mS.

vconsoleVersion
Specifies the console version number and tracks the packet format.
vconsoleRevision
Specifies the console version revision number and tracks the packet format.