cnsSetSystemNames
Changes the display name of the given system.
Synopsis
bool cnsSetSystemNames(string sys, langString displayNames);
Parameters
Parameter | Description |
---|---|
sys | System name |
displayNames | The new display name of the system |
Return value
Returns TRUE if successful or FALSE in case of an error.
Errors
-
Description
This function changes the display name of the given system.
main()
{
langString newSysNames;
setLangString(newSysNames, 0, "Mein System");
setLangString(newSysNames, 1, "My System");
cnsSetSystemNames("System1", newSysNames);
}
Availability
UI, CTRL