Einzelnen Beitrag anzeigen

Benutzerbild von RavenIV
RavenIV

Registriert seit: 12. Jan 2005
Ort: Waldshut-Tiengen
2.875 Beiträge
 
Delphi 2007 Enterprise
 
#2

Re: Probleme mit WaitForSingleObject

  Alt 21. Dez 2006, 16:46
aus der MSDN:
Code:
Return Value

If the function succeeds, the return value indicates the event that caused the function to return. It can be one of the following values.
Return code/value    Description
WAIT_ABANDONED
0x00000080L    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 is set to nonsignaled.

If the mutex was protecting persistent state information, you should check it for consistency.
WAIT_OBJECT_0
0x00000000L    The state of the specified object is signaled.
WAIT_TIMEOUT
0x00000102L    The time-out interval elapsed, and the object's state is nonsignaled.

If the function fails, the return value is WAIT_FAILED ((DWORD)0xFFFFFFFF). To get extended error information, call GetLastError.
dies könnte doch der 8-Stellige Wert sein, oder?
am besten benutzt Du zum Abfragen des Ergebnisses die Konstanten und nicht den Wert.
Die Konstanten sind definiert in der Windows.pas.
Klaus E.
Linux - das längste Text-Adventure aller Zeiten...
Wer nie Linux mit dem vi konfiguriert hat, der hat am Leben vorbei geklickt.
  Mit Zitat antworten Zitat