LJM_SPECIFIC_IPS_FILE
LJM_SPECIFIC_IPS_FILE
is an LJM configuration that describes the absolute or relative file path of the LJM specific IPs file.
To read, pass LJM_SPECIFIC_IPS_FILE
to LJM_ReadLibraryConfigStringS to get a string containing the file path.
To write, pass LJM_SPECIFIC_IPS_FILE
and string containing a file path to LJM_WriteLibraryConfigStringS, or use LJM_LoadConfigurationFile.
The constant LJM_SPECIFIC_IPS_FILE
can be used interchangeably with the string "LJM_SPECIFIC_IPS_FILE"
.
Remarks
To set LJM_SPECIFIC_IPS_FILE
to the default location, set it to "default"
or an empty string.
The default file path specified by LJM_SPECIFIC_IPS_FILE
is only parsed on LJM startup, so changes made to the file will not affect running LJM processes unless LJM_WriteLibraryConfigStringS(LJM_SPECIFIC_IPS_FILE, ...)
is called.
LJM_SPECIFIC_IPS_FILE
replaces the deprecated LJM_SPECIAL_ADDRESSES_FILE
.
Example
Set the Specific IPs file to the default location
int error = LJM_WriteLibraryConfigStringS(LJM_SPECIFIC_IPS_FILE, "default");
For more LJM configurations, see Library Configuration Functions.