POINT.cs 319 B

1234567891011121314151617
  1. using System.Runtime.InteropServices;
  2. namespace Y.FileQueryEngine.Win32.Structures
  3. {
  4. [StructLayout(LayoutKind.Sequential)]
  5. internal struct POINT
  6. {
  7. public int X;
  8. public int Y;
  9. public POINT(int x, int y)
  10. {
  11. this.X = x;
  12. this.Y = y;
  13. }
  14. }
  15. }