Desktop Functions: Smart Device Functions:
|
Search Results for "WaitForDebugEvent" in [All]Structures1: DEBUG_EVENT
kernel32
[DllImport( "kernel32.dll", EntryPoint = "WaitForDebugEvent" )]
public static extern bool WaitForDebugEvent(ref DEBUG_EVENT lpDebugEvent, uint dwMilliseconds ); Wrapping WaitForDebugEvent is very hard, because you need to wrap DEBUG_EVENT, which is a large tagged variant structure. It's especially hard to make the wrappers work on both 32-bit and 64-bit because DEBUG_EVENT has different definitions on each platform. |