CWinApp::m_pszProfileName
Visual Studio 2012
Contains the name of the application's .INI file.
LPCTSTR m_pszProfileName;
m_pszProfileName is a public variable of type const char*.
Note
|
|---|
|
If you assign a value to m_pszProfileName, it must be dynamically allocated on the heap. The CWinApp destructor calls free( ) with this pointer. You many want to use the _tcsdup( ) run-time library function to do the allocating. Also, free the memory associated with the current pointer before assigning a new value. For example: |
//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"));
Note