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.
IMAGEINFO (Structures)
.
C# Definition:
[StructLayout(LayoutKind.Sequential)]
struct IMAGEINFO
{
public IntPtr hbmImage;
public IntPtr hbmMask;
public int Unused1;
public int Unused2;
public RECT rcImage;
}
[StructLayout(LayoutKind.Sequential, Pack=1)]
public class IMAGEINFO
{
public IntPtr hbmImage;
public IntPtr hbmMask;
public int Unused1;
public int Unused2;
public int rcImage_left;
public int rcImage_top;
public int rcImage_right;
public int rcImage_bottom;
public IMAGEINFO();
}
VB Definition:
<StructLayout(LayoutKind.Sequential)> _
Public Struct IMAGEINFO
<StructLayout(LayoutKind.Sequential, Pack=1)> _
Public Class IMAGEINFO
Public hbmImage As IntPtr
Public hbmMask As IntPtr
Public Unused1 As Integer
Public Unused2 As Integer
Public rcImage As RECT
Public rcImage_left As Integer
Public rcImage_top As Integer
Public rcImage_right As Integer
Public rcImage_bottom As Integer
Public IMAGEINFO()
End Class
Please edit this page!
Do you have...
helpful tips?
corrections to the existing content?
alternate definitions?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing any supporting types needed.