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