OL_OsVerMin()
Get the minor version of the OS.
──────────────────────────────────────────────────────────────────────────────
Syntax
OL_OsVerMin() --> nVer
Arguments
None.
Returns
The minor version of the operating system.
Description
OL_OsVerMin() will return the minor version number of the OS.
Examples
// Print the current Dos version.
? alltrim( str( OL_OsVerMaj() ) ) + "." + ;
alltrim( str( OL_OsVerMin() ) )
Source: DOSVER.C
Author: Dave Pearson