NWFSE_OS_VERSION_INFO
Returns operating system version information. Used by NWGetOSVersionInfo.
typedef struct
{
SERVER_AND_VCONSOLE_INFO serverTimeAndVConsoleInfo ;
nuint16 reserved ;
nuint8 OSMajorVersion ;
nuint8 OSMinorVersion ;
nuint8 OSRevisionNum ;
nuint8 accountingVersion ;
nuint8 VAPVersion ;
nuint8 queueingVersion ;
nuint8 securityRestrictionsLevel ;
nuint8 bridgingSupport ;
nuint32 maxNumOfVolumes ;
nuint32 numOfConnSlots ;
nuint32 maxLoggedInConns ;
nuint32 maxNumOfNameSpaces ;
nuint32 maxNumOfLans ;
nuint32 maxNumOfMediaTypes ;
nuint32 maxNumOfProtocols ;
nuint32 maxMaxSubdirTreeDepth ;
nuint32 maxNumOfDataStreams ;
nuint32 maxNumOfSpoolPrinters ;
nuint32 serialNum ;
nuint16 applicationNum ;
} NWFSE_OS_VERSION_INFO;
uses calwin32
NWFSE_OS_VERSION_INFO = packed Record
serverTimeAndVConsoleInfo : SERVER_AND_VCONSOLE_INFO;
reserved : nuint16;
padding : nuint16;
OSMajorVersion : nuint8;
OSMinorVersion : nuint8;
OSRevisionNum : nuint8;
accountingVersion : nuint8;
VAPVersion : nuint8;
queueingVersion : nuint8;
securityRestrictionsLevel : nuint8;
bridgingSupport : nuint8;
maxNumOfVolumes : nuint32;
numOfConnSlots : nuint32;
maxLoggedInConns : nuint32;
maxNumOfNameSpaces : nuint32;
maxNumOfLans : nuint32;
maxNumOfMediaTypes : nuint32;
maxNumOfProtocols : nuint32;
maxMaxSubdirTreeDepth : nuint32;
maxNumOfDataStreams : nuint32;
maxNumOfSpoolPrinters : nuint32;
serialNum : nuint32;
applicationNum : nuint16;
End;