OL_IsNT()
Check to see if we are running under MS-Windows NT.
──────────────────────────────────────────────────────────────────────────────

Syntax

OL_IsNT() --> lIsNT

Arguments

None.

Returns

A logical value, .T. if we are running under MS-Windows NT, .F. if
not.

Description

OL_IsNT() can be used to check if your application is being run
under MS-Windows NT. This could come in handy if you want to provide
your users with extra features.

Examples

// Check if we are running under MS-Windows NT.

If OL_IsNT()
? "Oh well, never mind....."
Else
? "Ahhh! This ain't NT.... ;-)"
EndIf

Source: ISNT.C

Author: Dave Pearson