NWGetFileServerExtendedInfo

Returns extended information about the specified NetWare server, including versions for accounting, VAP, queueing, print server, virtual console, security and internet bridging.

Local Servers:blocking
Remote Servers:blocking
NetWare Server:3.11, 3.12, 3.2, 4.x, 5.x, 6.x
Platform:NLM, Windows NT, Windows 95, Windows 98
Library:Cross-Platform NetWare Calls (CAL*.*)
Service:Server Environment

Syntax

  #include <nwserver.h> 
  or 
  #include <nwcalls.h> 
   
  NWCCODE N_API  NWGetFileServerExtendedInfo  ( 
     NWCONN_HANDLE   conn,  
     pnuint8         accountingVer,  
     pnuint8         VAPVer,  
     pnuint8         queueingVer,  
     pnuint8         printServerVer,  
     pnuint8         virtualConsoleVer,  
     pnuint8         securityVer,  
     pnuint8         internetBridgeVer); 
  

Delphi Syntax

  uses calwin32 
   
  Function NWGetFileServerExtendedInfo 
    (conn : NWCONN_HANDLE; 
     accountingVer : pnuint8; 
     VAPVer : pnuint8; 
     queueingVer : pnuint8; 
     printServerVer : pnuint8; 
     virtualConsoleVer : pnuint8; 
     securityVer : pnuint8; 
     internetBridgeVer : pnuint8 
  ) : NWCCODE; 
  

Parameters

conn
(IN) Specifies the NetWare server connection handle.
accountingVer
(OUT) Points to the accounting version number (optional).
VAPVer
(OUT) Points to the VAP version number (optional).
queueingVer
(OUT) Points to the queueing version number (optional).
printServerVer
(OUT) Points to the print server version number (optional).
virtualConsoleVer
(OUT) Points to the virtual console version number (optional).
securityVer
(OUT) Points to the security version number (optional).
internetBridgeVer
(OUT) Points to the internet bridging version number (optional).

Return Values

These are common return values; see Return Values (Return Values for C) for more information.

0x0000

SUCCESSFUL

0x8801

INVALID_CONNECTION

0x890A

NLM_INVALID_CONNECTION

0x8996

SERVER_OUT_OF_MEMORY

Remarks

NWGetFileServerExtendedInfo returns values as a single byte per parameter, individual values between 0 and 255.

If you don’t want certain information, substitute NULL. However, all parameter positions must be filled.

To call NWGetFileServerExtendedInfo, you must have console operator rights.

NCP Calls

See Also

NWGetFileServerInformation, NWGetFileServerVersionInfo