xHarbour Reference Documentation > Function Reference |
Defines the delimiting characters for comments and inline comments.
HB_SetIniComment( <cLineComment>, <cInlineComment> ) --> NIL
The return value is always NIL.
INI files may contain comment lines. They are recognized by a single character which can be changed with function HB_SetIniComment().
See also: | HB_ReadIni(), HB_WriteIni() |
Category: | File functions , xHarbour extensions |
Source: | rtl\hbini.prg |
LIB: | xhb.lib |
DLL: | xhbdll.dll |
// This example demonstrates the two possibilities for // comments in an INI file. ; this is a line comment [sect1] key1 = value1 # this is an inline comment
http://www.xHarbour.com