IniNotify¶
Notifications for INI parsing.
Public Functions¶
apply¶
This is called for every valid entry in the INI file. If key/value pairs occur before a section name, the section can be an empty string. Return false to halt processing.
Parameters¶
Returns¶
- Bool val
add_section¶
This is called for every valid section in the INI file. Return false to halt processing.
Parameters¶
- section: String val
Returns¶
- Bool val
errors¶
This is called for each error encountered. Return false to halt processing.
Parameters¶
- line: USize val
- err: (IniIncompleteSection val | IniNoDelimiter val)
Returns¶
- Bool val