12345678910111213141516171819202122232425262728293031323334353637 |
- using System.Runtime.InteropServices;
- namespace Microsoft.Win32
- {
-
-
-
- public static partial class NativeMethods
- {
-
-
-
- [StructLayout(LayoutKind.Sequential)]
- public struct POINT
- {
-
-
-
- public int x;
-
-
-
- public int y;
-
-
-
-
-
- public POINT(int x, int y)
- {
- this.x = x;
- this.y = y;
- }
- }
- }
- }
|