ISInterface:GetProfileName

From Lavish Software Wiki
Revision as of 02:13, 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 GetProfileName(char *buf, unsigned long buflen)

Purpose

To obtain the profile name of the current session

Usage

Parameters

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

Examples

char profilename[512];
pISInterface->GetProfileName(profilename,sizeof(profilename));

See Also