Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than Structures, prefix the name with the module name and a period.
WINDOWINFO (Structures)
.
C# Definition:
[StructLayout(LayoutKind.Sequential)]
struct WINDOWINFO
{
public uint cbSize;
public RECT rcWindow;
public RECT rcClient;
public uint dwStyle;
public uint dwExStyle;
public uint dwWindowStatus;
public uint cxWindowBorders;
public uint cyWindowBorders;
public ushort atomWindowType;
public ushort wCreatorVersion;
public WINDOWINFO(Boolean ? filler) : this() // Allows automatic initialization of "cbSize" with "new WINDOWINFO(null/true/false)".
public WINDOWINFO(Boolean ? filler) : this()
{
cbSize = (UInt32)(Marshal.SizeOf(typeof( WINDOWINFO )));
cbSize = (UInt32)(Marshal.SizeOf(typeof( WINDOWINFO )))
}
}
VB Definition:
<StructLayout(LayoutKind.Sequential)> Structure WINDOWINFO
Dim cbSize As Integer
Dim rcWindow As RECT
Dim rcClient As RECT
Dim dwStyle As Integer
Dim dwExStyle As Integer
Dim dwWindowStatus As UInt32
Dim cxWindowBorders As UInt32
Dim cyWindowBorders As UInt32
Dim atomWindowType As UInt16
Dim wCreatorVersion As Short
End Structure