NWFSE_CPU_INFO

Returns Server Environment CPU information. Used by NWGetCPUInfo.

Service:Server Environment
Defined In:nwfse.h

Structure

  typedef struct 
  { 
     SERVER_AND_VCONSOLE_INFO   serverTimeAndVConsoleInfo ; 
     nuint16                    reserved ; 
     nuint32                    numOfCPUs ; 
     CPU_INFO                   CPUInfo ; 
  } NWFSE_CPU_INFO;
  

Delphi Structure

  uses calwin32 
   
  NWFSE_CPU_INFO = packed Record 
      serverTimeAndVConsoleInfo : SERVER_AND_VCONSOLE_INFO;  
      reserved : nuint16;
      padding  : nuint16;  
      numOfCPUs : nuint32;  
      CPUInfo : CPU_INFO; 
    End;
  

Fields

serverTimeAndVConsoleInfo
Points to SERVER_AND_VCONSOLE_INFO.
reserved
Is reserved (pass 0).
numOfCPUs
Specifies the number of CPUs in the server.
CPUInfo
Points to the CPU_INFO structure.