WINDOWINFO.cs 368 B

1234567891011121314151617
  1. using System;
  2. namespace LYFZ.OtherExpansion.Win32.Struct
  3. {
  4. public struct WINDOWINFO
  5. {
  6. public uint cbSize;
  7. public RECT rcWindow;
  8. public RECT rcClient;
  9. public uint dwStyle;
  10. public uint dwExStyle;
  11. public uint dwWindowStatus;
  12. public uint cxWindowBorders;
  13. public uint cyWindowBorders;
  14. public IntPtr atomWindowType;
  15. public ushort wCreatorVersion;
  16. }
  17. }