SendMessageTimeoutFlags Enumeration

Definition

Namespace: DevCase.Win32.Enums
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[FlagsAttribute]
public enum SendMessageTimeoutFlags

Remarks

Members

Normal 0 The calling thread is not prevented from processing other requests while waiting for the function to return.
Block 1 Prevents the calling thread from processing any other requests until the function returns.
AbortIfHung 2 The function returns without waiting for the time-out period to elapse if the receiving thread appears to not respond or "hangs."
NoTimeoutIfNotHung 8 The function does not enforce the time-out period as long as the receiving thread is processing messages.
ErrorOnExit 32 The function should return 0 if the receiving window is destroyed or its owning thread dies while the message is being processed.

See Also