FILEIniGetValue
Return the list of all sections in the current ini file Scol object.
Prototype :
fun [INIFile S I u0] u0
- INIFile : a ini file Scol object.
- S : a key, like "section_name:key_name" (':' is the separator)
- I : a flag to indicate the type of the value.
- INI_BOOLEAN : for a boolean value. Will return 1 if the value starts
with 'y', 'Y', 't', 'T' or '1'. Will return 0 if the value starts
with 'n', 'N', 'f', 'F' or '0'. Otherwise, will return nil
- INI_INTEGER : for an integer value. If the value is really not
an integer, the return value can be its address or something else.
- INI_FLOAT : for a floating point value. Same remark than INI_INTEGER
- INI_STRING : for a literal string value
- an other value will return nil
- u0 : this argument should always be at nil.
Return : u0
- I, if the flag is INI_BOOLEAN or INI_INTEGER
- F, if the flag is INI_FLOAT
- S, is the flag is INI_STRING
If an error occurs, the function returns nil