Поделиться через


CWinApp::ExitInstance

Called by the framework from within the Run member function to exit this instance of the application.

virtual int ExitInstance( );

Возвращаемое значение

The application's exit code; 0 indicates no errors, and values greater than 0 indicate an error. This value is used as the return value from WinMain.

Заметки

Do not call this member function from anywhere but within the Run member function.

The default implementation of this function writes framework options to the application's .INI file. Override this function to clean up when your application terminates.

Пример

int CMyApp::ExitInstance()
{
  if (m_pMySampleMem)
     delete m_pMySampleMem;

   DoCleanup();

   return CWinApp::ExitInstance();
}

Требования

Header: afxwin.h

См. также

Основные понятия

CWinApp Class

CWinApp Members

Hierarchy Chart

CWinApp::Run

CWinApp::InitInstance