SendMessageTimeoutFlags Enumeration
Namespace: DevCase.Win32.EnumsAssembly: 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
<FlagsAttribute>
Public Enumeration SendMessageTimeoutFlags
Dim instance As SendMessageTimeoutFlags
[FlagsAttribute]
public enum class SendMessageTimeoutFlags
[<FlagsAttribute>]
type SendMessageTimeoutFlags
No code example is currently available or this language may not be supported.
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.
|