@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: Structure to retrieve information about a WH_MOUSE hook. !!!!C# Definition: [StructLayout(LayoutKind.Sequential)] struct Point { public int X; public int Y; } [StructLayout(LayoutKind.Sequential)] struct MOUSEHOOKSTRUCT { public Point pt; public IntPtr hwnd; public uint wHitTestCode; public IntPtr dwExtraInfo; } [StructLayout(LayoutKind.Sequential)] struct MouseHookStructEx { public MOUSEHOOKSTRUCT mouseHookStruct; public int MouseData; } !!!!VB Definition: [StructLayout(LayoutKind.Sequential)] struct Point { public int X; public int Y; } [StructLayout(LayoutKind.Sequential)] struct MOUSEHOOKSTRUCT { public Point pt; public IntPtr hwnd; public uint wHitTestCode; public IntPtr dwExtraInfo; } [StructLayout(LayoutKind.Sequential)] struct MouseHookStructEx { public MOUSEHOOKSTRUCT mouseHookStruct; public int MouseData; } !!!!User-Defined Field Types: None. !!!!Notes: None. Documentation: MOUSEHOOKSTRUCTEX@msdn on MSDN
Edit Structures.MOUSEH...
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.