CWinApp::m_pszProfileName
更新 : 2007 年 11 月
アプリケーションの 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"));
必要条件
ヘッダー : afxwin.h