CWinApp::m_pszProfileName

包含应用程序的.INI文件的名称。

LPCTSTR m_pszProfileName;

备注

m_pszProfileName 是类型 **const char***的公共变量。

备注

如果赋值。m_pszProfileName,在堆必须动态分配它。CWinApp 调用析构函数 free( )与此指针。您许多若要使用 _tcsdup( ) 运行库函数执行分配。另外,请释放内存与当前指针在分配新值之前。例如:

//First free the string allocated by MFC at CWinApp startup. 
//The string is allocated before InitInstance is called.
free((void*)m_pszProfileName);
//Change the name of the .INI file. 
//The CWinApp destructor will free the memory.
m_pszProfileName = _tcsdup(_T("c:\\somedir\\myini.ini"));

要求

Header: afxwin.h

请参见

参考

CWinApp Class

层次结构图

CWinApp::GetProfileString

CWinApp::GetProfileInt

CWinApp::WriteProfileInt

CWinApp::WriteProfileString