Load & parse configuration file
# a line which starts with # character is comment @INCLUDE other.conf => (include other.conf) base = /tmp => base = /tmp log = ${base}/log => /tmp/log (using variable) host = ${!/bin/hostname -s} => arena (external command result) path = ${%PATH} => /usr/bin:/usr/sbin (environment)
Q_ENTRY *config = qConfigParseFile(NULL, "qdecoder.conf", '=');
|