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);
}

相关文章:

  • 2021-12-19
  • 2021-08-25
  • 2021-10-21
  • 2021-05-13
  • 2021-12-08
  • 2022-12-23
  • 2022-12-23
  • 2021-08-21
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-10-05
  • 2021-08-07
  • 2022-12-23
  • 2022-12-23
  • 2021-07-13
相关资源
相似解决方案