MessageLoopMode Enumeration¶
Namespace: id3.Devices
Definition¶
Specifies the mode for message handling.
This enumeration defines the different modes for handling messages within the system, including the use of internal threads for message processing.
class MessageLoopMode
enum MessageLoopMode
public enum MessageLoopMode
public enum MessageLoopMode
typedef enum id3DevicesMessageLoopMode
Fields¶
Name |
Value |
Description |
---|---|---|
|
0 |
No thread is used for communication. This mode is suitable for single-threaded applications. |
|
1 |
An internal thread is used for communication. This mode is suitable for applications that require a separate thread for message handling. |
|
2 |
A internal Windows message loop is used for communication. This mode is suitable for applications that require message handling using a Windows message loop. |
|
3 |
The application message loop is used for communication. This mode is suitable for Windows applications that manage their own message loop. |