Desktop Functions: Smart Device Functions:
|
waitforsingleobject (kernel32)
C# Signature:
[DllImport("kernel32", SetLastError=true, ExactSpelling=true)] User-Defined Types:None. Notes:None. Tips & Tricks:Int32 can be changed to UINT, so you can define:
public static uint INFINITE = 0xFFFFFFFF; and use:
WaitForSingleObject(handle, INFINITE); Edgar - edgarrc(at)gmail.com Sample Code:Please add some! Alternative Managed API:If you're waiting on a file system object, look at System.IO.FileSystemWatcher Please edit this page!Do you have...
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more). |
|