ISInterface:SetProfileSetting
Jump to navigation
Jump to search
Syntax
- bool GetProfileSetting(char *Setting, char *buf, unsigned long buflen)
Purpose
To obtain a profile setting
Usage
Parameters
- char *Setting
- [in] Name of the setting to obtain
- char *buf
- [out] Buffer to put the setting into
- unsigned long buflen
- [in] Length of the buffer
Return Value
- bool
- Returns true on success, false on failure
Examples
char profilesettingbuffer[1024]; pISInterface->GetProfileSetting("Preload Parameters",profilesettingbuffer,sizeof(profilesettingbuffer));