AfxGetThread
Visual Studio 2010
Call this function to get a pointer to the CWinThread object representing the currently executing thread.
CWinThread* AfxGetThread( );
Must be called from within the desired thread.
Note
|
|---|
|
If you are porting an MFC project calling AfxGetThread from Visual C++ versions 4.2, 5.0, or 6.0, AfxGetThread calls AfxGetApp if no thread is found. In Visual C+ .NET and later, AfxGetThread returns NULL if no thread was found. If you want the application thread, you must call AfxGetApp. |
Note