ISInterface:IsExtensionLoaded

From Lavish Software Wiki
Revision as of 03:25, 3 September 2005 by Beefalo (talk | contribs)
(diff) ←Older revision | view current revision (diff) | Newer revision→ (diff)
Jump to navigation Jump to search

Syntax

  • bool IsExtensionLoaded(char *Filename)

Purpose

This function can be used to determine whether an extension is loaded

Usage

Parameters

  • char *Filename
The filename for the extension to check for. Filename should not include a path or file extension (e.g. isxventrilo instead of isxventrilo.dll)

Return Value

  • bool
The return value indicates whether the extension is loaded

Examples

if (pISInterface->IsExtensionLoaded("ISXVentrilo"))
  printf("ISXVentrilo is loaded");

See Also