This repository was archived by the owner on Jul 26, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +9
-10
lines changed Expand file tree Collapse file tree 2 files changed +9
-10
lines changed Original file line number Diff line number Diff line change 33
44namespace PInvoke
55{
6- using System ;
76 using System . Runtime . InteropServices ;
87
98 /// <content>
@@ -14,15 +13,15 @@ public partial class User32
1413 [ StructLayout ( LayoutKind . Sequential ) ]
1514 public struct WINDOWINFO
1615 {
17- public ushort atomWindowType ;
1816 public uint cbSize ;
19- public uint cxWindowBorders ;
20- public uint cyWindowBorders ;
21- public uint dwExStyle ;
17+ public RECT rcWindow ;
18+ public RECT rcClient ;
2219 public uint dwStyle ;
20+ public uint dwExStyle ;
2321 public uint dwWindowStatus ;
24- public RECT rcClient ;
25- public RECT rcWindow ;
22+ public uint cxWindowBorders ;
23+ public uint cyWindowBorders ;
24+ public ushort atomWindowType ;
2625 public ushort wCreatorVersion ;
2726
2827 public static WINDOWINFO Create ( )
Original file line number Diff line number Diff line change @@ -13,11 +13,11 @@ public partial class User32
1313 [ StructLayout ( LayoutKind . Sequential ) ]
1414 public struct MINMAXINFO
1515 {
16- public POINT ptMaxPosition ;
16+ public POINT ptReserved ;
1717 public POINT ptMaxSize ;
18- public POINT ptMaxTrackSize ;
18+ public POINT ptMaxPosition ;
1919 public POINT ptMinTrackSize ;
20- public POINT ptReserved ;
20+ public POINT ptMaxTrackSize ;
2121 }
2222 }
2323}
You can’t perform that action at this time.
0 commit comments