BridgeSettingGet
Reads a string file from the settings.
bool BridgeSettingGet( const char* section, // ini section name to read const char* key, // ini key in the section to read char* value // string to hold the value read );
参数
section
Section name to read.
key
Key in the section to read.
value
Destination buffer. Should be of MAX_SETTING_SIZE
.
返回值
This function returns true if successful or false otherwise.
示例
Example code.