NWGetNWADVersion

Returns the version information about the NWAD library

NetWare Server:4.1 and above
Platform:NLM, Windows NT, Windows 95, Windows 98
Library:Cross-Platform Auditing (AUD*.*)
Service:Auditing

Syntax

   #include <nwaudit.h> 
   or 
   #include <nwnet.h> 
    
   void N_API  NWGetNWADVersion  ( 
      pnuint8   majorVersion,  
      pnuint8   minorVersion,  
      pnuint8   revisionLevel,  
      pnuint8   betaReleaseLevel); 
   
   

Pascal Syntax

   uses audwin32 
    
   Procedure NWGetNWADVersion 
     (Var majorVersion : nuint8; 
      Var minorVersion : nuint8; 
      Var revisionLevel : nuint8; 
      Var betaReleaseLevel : nuint8 
   ); 
   
   

Parameters

majorVersion
(OUT) Points to the major version of the library. For example, 4 would be returned for NetWare 4.1.
minorVersion
(OUT) Points to the minor version of the library. For example, .1 would be returned for NetWare 4.1.
revisionLevel
(OUT) Points to the revision version of the library. For example, c would be returned for NetWare 3.11c.
betalReleaseLevel
(OUT) Points to the beta release version of the library.

Return Values

None