WaitObjectResult 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.
public enum WaitObjectResult
Public Enumeration WaitObjectResult
Dim instance As WaitObjectResult
public enum class WaitObjectResult
No code example is currently available or this language may not be supported.
Object0 |
0 |
The state of the specified object is signaled.
|
Abandoned |
128 |
The specified object is a mutex object that was not released by the thread that owned the mutex object
before the owning thread terminated.
Ownership of the mutex object is granted to the calling thread and the mutex state is set to nonsignaled.
the mutex was protecting persistent state information, you should check it for consistency.
|
IOCompletion |
192 |
The wait was ended by one or more user-mode asynchronous procedure calls (APC) queued to the thread.
|
Timeout |
258 |
The time-out interval elapsed, and the object's state is nonsignaled.
|
Failed |
4,294,967,295 |
The function has failed. To get extended error information, call GetLastWin32Error.
|