Compartir a través de


CWinApp::m_pszProfileName

Contiene el nombre del archivo de .INI de la aplicación.

LPCTSTR m_pszProfileName;

Comentarios

m_pszProfileName es una variable pública de **const char***escrito.

Nota

Si se asigna un valor a m_pszProfileName, debe estar asignado dinámicamente en la pila.CWinApp destructor llama libere() con este puntero.Se muchos desea utilizar la función de biblioteca en tiempo de ejecución de _tcsdup() para hacer asignar.también, libere memoria asociado con el puntero actual antes de asignar un nuevo valor.Por ejemplo:

//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"));

Requisitos

encabezado: afxwin.h

Vea también

Referencia

CWinApp Class

Gráfico de jerarquías

CWinApp::GetProfileString

CWinApp::GetProfileInt

CWinApp::WriteProfileInt

CWinApp::WriteProfileString