1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Runtime.InteropServices;
- namespace Microsoft.Win32
- {
-
-
-
- public static partial class NativeMethods
- {
-
-
-
- [StructLayout(LayoutKind.Sequential)]
- public struct CURSORINFO
- {
-
-
-
- public int cbSize;
-
-
-
- public int flags;
-
-
-
- public IntPtr hCursor;
-
-
-
- public POINT ptScreenPos;
- }
- }
- }
|