ISInterface:GetProfileName

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