다음을 통해 공유


CWinApp::m_pszProfileName

응용 프로그램의 이름을 포함합니다.INI 파일입니다.

LPCTSTR m_pszProfileName;

설명

m_pszProfileName형식의 public 변수는 const char *.

[!참고]

값을 할당 하는 경우 m_pszProfileName, 힙에 동적으로 할당 해야 합니다.CWinApp 소멸자 호출 사용 가능한(this이 포인터).대부분을 사용 하는 _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

참고 항목

참조

CWinApp 클래스

계층 구조 차트

CWinApp::GetProfileString

CWinApp::GetProfileInt

CWinApp::WriteProfileInt

CWinApp::WriteProfileString