QuercusVL Programming Manual
●
ExportStatus
C++: bool ExportStatus ( const char* fileName )
C:
int VL_Configuration_ExportStatus ( int h, const char* fileName )
Creates a system status report an saves it at the root of unit's ftp server named as
“fileName”. Returns true for a successful operation, otherwise returns false.
In C the parameter “h” is a handler of
Configuration.
●
GetEntriesCount
C++: int GetEntriesCount()
C:
int VL_Configuration_GetEntriesCount ( int h )
Returns the number of variables of unit's configuration system or -1 when failed.
In C the parameter “h” is a handler of
Configuration.
●
GetEntry
C++: SettingsEntry GetEntry ( int n )
C:
int VL_Configuration_GetEntryByIndex ( int h, int n )
Returns the nth variable of unit's configuration system.
In C++, if the SettingsEntry indicated does not exist, returns an invalid one, in C
returns null.
In C, when the object is needed no more, the function VL_SettingsEntry_Release must
be called (see Release method from SettingsEntry class)
In C the parameter “h” is a handler of
Configuration
and returns a handler of
SettingsEntry.
●
GetEntry
C++: SettingsEntry GetEntry ( const char* name )
C:
int VL_Configuration_GetEntryByName ( int h, const char* name )
Returns the variable named “name” of unit's configuration system.
In C++, if the SettingsEntry indicated does not exist, returns an invalid one, in C
returns null.
In C, when the object is needed no more, the function VL_SettingsEntry_Release must
be called (see Release method from SettingsEntry class)
In C the parameter “h” is a handler of
Configuration
and returns a handler of
Quercus Technologies
85