1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- using System;
- using System.Runtime.InteropServices;
- namespace Microsoft.Win32
- {
-
-
-
- public static partial class NativeMethods
- {
-
-
-
- [StructLayout(LayoutKind.Sequential)]
- public struct TOOLINFO
- {
-
-
-
- public int cbSize;
-
-
-
- public int uFlags;
-
-
-
- public IntPtr hwnd;
-
-
-
- public IntPtr uId;
-
-
-
- public RECT rect;
-
-
-
- public IntPtr hinst;
-
-
-
- [MarshalAs(UnmanagedType.LPTStr)]
- public string lpszText;
-
-
-
- public int lParam;
-
-
-
- public IntPtr lpReserved;
- }
- }
- }
|