标签:
char SectionNames[MAX_PATH],*pSectionName;
ZeroMemory(SectionNames,MAX_PATH);
GetPrivateProfileSectionNames(SectionNames,MAX_PATH,"config.ini");
int i=0;
for (char* Name = SectionNames;*Name !=‘\0‘;Name+=strlen(Name)+1,i++)
{
m_List.InsertItem(i,Name);
}
标签:
原文地址:http://www.cnblogs.com/dengpeng1004/p/4689563.html