OL_95VMTitle()
Set/get the Windows 95 virtual machine title.
──────────────────────────────────────────────────────────────────────────────

Syntax

OL_95VMTitle( [<cNew>] ) --> cOld

Arguments

<cNew> is the optional new title.

Returns

The current title.

Description

OL_95VMTitle() can be used to set the virtual machine title. This is
the left hand text you see displayed on a DOS session's title bar.

NOTE: Because this function needs to do some extra stuff when your
application is running in protected mode I've had to make use of
the CPMI library. You must link this in if you intend to use
this function, even if you are linking for real mode operation.

Examples

// Fiddle with the virtual machine title.

Local cOldTitle := OL_95VMTitle( "Stock System" )

// ...
OL_95VMTitle( cOldTitle )

Source: WIN95.C

Author: Dave Pearson