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 3
3
4
4
namespace PInvoke
5
5
{
6
- using System ;
7
6
using System . Runtime . InteropServices ;
8
7
9
8
/// <content>
@@ -14,15 +13,15 @@ public partial class User32
14
13
[ StructLayout ( LayoutKind . Sequential ) ]
15
14
public struct WINDOWINFO
16
15
{
17
- public ushort atomWindowType ;
18
16
public uint cbSize ;
19
- public uint cxWindowBorders ;
20
- public uint cyWindowBorders ;
21
- public uint dwExStyle ;
17
+ public RECT rcWindow ;
18
+ public RECT rcClient ;
22
19
public uint dwStyle ;
20
+ public uint dwExStyle ;
23
21
public uint dwWindowStatus ;
24
- public RECT rcClient ;
25
- public RECT rcWindow ;
22
+ public uint cxWindowBorders ;
23
+ public uint cyWindowBorders ;
24
+ public ushort atomWindowType ;
26
25
public ushort wCreatorVersion ;
27
26
28
27
public static WINDOWINFO Create ( )
Original file line number Diff line number Diff line change @@ -13,11 +13,11 @@ public partial class User32
13
13
[ StructLayout ( LayoutKind . Sequential ) ]
14
14
public struct MINMAXINFO
15
15
{
16
- public POINT ptMaxPosition ;
16
+ public POINT ptReserved ;
17
17
public POINT ptMaxSize ;
18
- public POINT ptMaxTrackSize ;
18
+ public POINT ptMaxPosition ;
19
19
public POINT ptMinTrackSize ;
20
- public POINT ptReserved ;
20
+ public POINT ptMaxTrackSize ;
21
21
}
22
22
}
23
23
}
You can’t perform that action at this time.
0 commit comments