Desktop Functions: Smart Device Functions:
|
Search Results for "GetGUIThreadInfo" in [All]user32
static extern bool GetGUIThreadInfo(uint idThread, ref GUITHREADINFO lpgui);
GetGUIThreadInfo( 0, out threadInfo );
public static extern bool GetGUIThreadInfo(uint idThread, ref GUITHREADINFO lpgui);
Win32API.GetGUIThreadInfo(dwThreadId, ref guiThreadInfo);
// Thanks to this StackOverflow question: http://stackoverflow.com/questions/719825/calling-getguithreadinfo-via-p-invoke
internal static extern bool GetGUIThreadInfo(uint idThread, ref GuiThreadInfo lpgui);
if(!GetGUIThreadInfo(0, ref info)) |