CWinApp::ExitInstance

virtualintExitInstance();

Return Value

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.

Remarks

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

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.

Example

// MySampleApp.cpp.

int CMySampleApp::ExitInstance()
{
   // TODO: Add your specialized code here and/or
   // call the base class.

   if ( m_pMySampleMem )
      delete m_pMySampleMem;

   DoCleanup();

   return CWinApp::ExitInstance();
}

CWinApp OverviewClass MembersHierarchy Chart

See Also   CWinApp::Run, CWinApp::InitInstance