You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
520 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Runtime.InteropServices;
  4. using System.Text;
  5. namespace Apewer.Internals.Interop
  6. {
  7. [StructLayout(LayoutKind.Sequential)]
  8. internal struct RECT
  9. {
  10. public int Left;
  11. public int Top;
  12. public int Right;
  13. public int Bottom;
  14. public RECT(int left, int top, int right, int bottom)
  15. {
  16. Left = left;
  17. Top = top;
  18. Right = right;
  19. Bottom = bottom;
  20. }
  21. }
  22. }