THDTYPE enumeration
-
- 2 minutes to read
Indicates whether a particular thread supports a message loop.
Syntax
typedef enum _THDTYPE {
THDTYPE_BLOCKMESSAGES,
THDTYPE_PROCESSMESSAGES
} THDTYPE;
Constants
THDTYPE_BLOCKMESSAGES |
The thread does not support a message loop. This behavior is associated with multithreaded apartments. |
THDTYPE_PROCESSMESSAGES |
The thread supports a message loop. This behavior is associated with single-threaded apartments. |
Requirements
|
|
Minimum supported client |
Windows 2000 Professional [desktop apps only] |
Minimum supported server |
Windows 2000 Server [desktop apps only] |
Header |
objidlbase.h (include Objidl.h) |
See also
IComThreadingInfo::GetCurrentThreadType