| 1234567891011121314151617 |
- using System.Runtime.InteropServices;
- namespace Y.FileQueryEngine.Win32.Structures
- {
- [StructLayout(LayoutKind.Sequential)]
- internal struct POINT
- {
- public int X;
- public int Y;
- public POINT(int x, int y)
- {
- this.X = x;
- this.Y = y;
- }
- }
- }
|