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.

16 lines
289 B

  1. using System.Runtime.InteropServices;
  2. namespace Apewer.Internals.Interop
  3. {
  4. /// <summary></summary>
  5. [StructLayout(LayoutKind.Sequential)]
  6. struct NativeRECT
  7. {
  8. public int left;
  9. public int top;
  10. public int right;
  11. public int bottom;
  12. }
  13. }