ISInterface:IsAvailable

From Lavish Software Wiki
Revision as of 01:16, 29 November 2006 by Lax (talk | contribs)
(diff) ←Older revision | view current revision (diff) | Newer revision→ (diff)
Jump to navigation Jump to search

Syntax

  • bool IsAvailable()
Note: This is so named because it will be a member function of a separate interface, which is inherited by ISInterface.

Purpose

Checks if .NET 2.0 functionality is already initialized.

Usage

Parameters

none

Return Value

  • bool
true if .NET 2.0 functionality is already initialized.

Examples

Example code
if (pISInterface->IsAvailable())
{
  printf(".NET 2.0 functionality is available (already loaded!)");
}

See Also