I'm modifying existing C++ application and moving out some values that are currently hard coded.
I'm doing this with one class that will "manage" this whole thing and hold map<CString, CString> of the values from the INI file.
Right now I have to read each value separately using ::GetPrivateProfileString function - can I somehow read whole section instead of single value?
Prefer not to have to read the file manually, but if there's any reasonable (i.e. efficient + simple to use) existing way I'm open for suggestions.
Edit: just now had to use it "for real" and the solution was indeed passing NULL as the lpKeyName value. Complete code including parsing the return value:
char buffer[MAX_STRING_SIZE];
int charsCount = ::GetPrivateProfileString("MySection", NULL, NULL, buffer, MAX_STRING_SIZE, m_strIniPath);
CString curValue;
curValue.Empty();
char curChar = '\0';
for (int i = 0; i < charsCount; i++)
{
curChar = buffer[i];
if (curChar == '\0')
{
if (curValue.GetLength() > 0)
HandleValue(curValue);
curValue.Empty();
}
else
{
curValue.AppendFormat("%c", curChar);
}
}
if (curValue.GetLength() > 0)
HandleValue(curValue);
It's not trivial as it returns the keys separated by zero character (EOS?) so I had to extract them using loop such as the above - share it here for the sake of everyone who might need it. :-)

GetPrivateProfileSection- you can have a look at it here (code.google.com/p/irfanpaint/source/browse/trunk/irfanpaint/… / code.google.com/p/irfanpaint/source/browse/trunk/irfanpaint/…); not the most beautiful or modern code I ever wrote, but it used to work fine. :) – Matteo Italia Dec 26 '10 at 15:47