ISInterface:GetGameName

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

Syntax

  • void GetGameName(char *buf, unsigned long buflen)

Purpose

To obtain the game name of the current session

Usage

Parameters

  • char *buf
[out] Buffer to hold the name of the game
  • unsigned long buflen
[in] Length of the buffer

Examples

char gamename[512];
pISInterface->GetGameName(gamename,sizeof(gamename));

See Also