Tagged Questions
1
vote
3answers
689 views
GetPrivateProfileString - c++ class - return string - memory pre calculation
In GetPrivateProfileString, lpReturnedString returns the string value present in the key of a particular section of an ini file.
My question is that how will i know exactly, how much memory has to be ...
0
votes
1answer
174 views
How can I print multiple values of the same key from SimpleIni
The ini file:
user = abc
user = def
user = ghi
user = xyz
The code:
CSimpleIniCaseW ini;
ini.SetUnicode();
ini.LoadFile("myapp.ini");
CSimpleIniCaseW::TNamesDepend values;
ini.GetAllValues(L"", ...
0
votes
2answers
2k views
How to read config file entries from an INI file
I can't use the Get*Profile functions because I'm using an older version of the windows CE platform SDK which doesn't have those. It doesn't have to be too general.
[section]
name = some string
I ...