Enum SendMessageTimeoutFlags
Namespace: Dapplo.Windows.User32.Enums
Assembly: Dapplo.Windows.User32.dll
Syntax
public enum SendMessageTimeoutFlags : uint
Fields
Name | Description |
---|---|
AbortIfHung | The function returns without waiting for the time-out period to elapse if the receiving thread appears to not respond or "hangs." |
Block | Prevents the calling thread from processing any other requests until the function returns. |
ErrorOnExit | The function should return 0 if the receiving window is destroyed or its owning thread dies while the message is being processed. |
Normal | The calling thread is not prevented from processing other requests while waiting for the function to return. |
NoTimeoutIfNotHung | The function does not enforce the time-out period as long as the receiving thread is processing messages. |