AfxEndThread
Visual Studio .NET 2003
Call this function to terminate the currently executing thread.
void AFXAPI AfxEndThread( UINT nExitCode, BOOL bDelete = TRUE );
Parameters
- nExitCode
- Specifies the exit code of the thread.
- bDelete
- Deletes the thread object from memory.
Remarks
Must be called from within the thread to be terminated.
For more information on AfxEndThread, see the article Multithreading: Terminating Threads.