ISInterface:GetGameName

From Lavish Software Wiki
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