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.
VS_VERSIONINFO (Structures)
.
C# Definition:
using WORD = System.Int16;
using DWORD = System.UInt32;
using WCHAR = System.Char;
using LPCTSTR = System.String;
using LPVOID = System.IntPtr;
using LPTSTR = System.Text.StringBuilder;
struct VS_VERSIONINFO {
public TODO;
}
VB Definition:
Structure VS_VERSIONINFO
Public TODO
End Structure
User-Defined Field Types:
None.
[StructLayout(LayoutKind.Explicit, CharSet = CharSet.Unicode)]
internal unsafe struct VS_VERSIONINFO
{
/// <summary>
/// The length, in bytes, of the VS_VERSIONINFO structure
/// </summary>
[FieldOffset(0)]
internal WORD wLength;
/// <summary>
/// The length, in bytes, of the Value member.
/// </summary>
[FieldOffset(2)]
internal WORD wValueLength;
/// <summary>
/// The type of data in the version resource.
/// This member is 1 if the version resource contains text data and 0 if the version resource contains binary data.
/// </summary>
[FieldOffset(4)]
internal WORD wType;
/// <summary>
/// Contains as many zero words as necessary to align the Value member on a 32-bit boundary.
/// </summary>
[FieldOffset(36)]
internal WORD Padding1;
/// <summary>
/// Arbitrary data associated with this VS_VERSIONINFO structure.
/// </summary>
[FieldOffset(40)]
internal VS_FIXEDFILEINFO Value;
/// <summary>
/// As many zero words as necessary to align the Children member on a 32-bit boundary.
/// </summary>
[FieldOffset(92)]
internal WORD Padding2;
/// <summary>
/// An array of zero or one StringFileInfo structures,
/// </summary>
[FieldOffset(94)]
internal WORD Children;
}
'' <summary>
'' The length, in bytes, of the VS_VERSIONINFO structure
'' </summary>
<FieldOffset(0)> _
Dim wLength As WORD
'' <summary>
'' The length, in bytes, of the Value member.
'' </summary>
<FieldOffset(2)> _
Dim wValueLength As WORD
'' <summary>
'' The type of data in the version resource.
'' This member is 1 if the version resource contains text data and 0 if the version resource contains binary data.
'' </summary>
<FieldOffset(4)> _
Dim wType As WORD
'' <summary>
'' The Unicode string L"VS_VERSION_INFO".
'' </summary>
<FieldOffset(6), VBFixedArray(15 - 1)> _
Dim szKey() As WCHAR
'' <summary>
'' Contains as many zero words as necessary to align the Value member on a 32-bit boundary.
'' </summary>
<FieldOffset(36)> _
Dim Padding1 As WORD
'' <summary>
'' Arbitrary data associated with this VS_VERSIONINFO structure.
'' </summary>
<FieldOffset(40)> _
Dim Value As VS_FIXEDFILEINFO
'' <summary>
'' As many zero words as necessary to align the Children member on a 32-bit boundary.
'' </summary>
<FieldOffset(92)> _
Dim Padding2 As WORD
'' <summary>
'' An array of zero or one StringFileInfo structures,
'' </summary>
<FieldOffset(94)> _
Dim Children As WORD
End Structure
User-Defined Field Types:
None.
Notes:
TODO - a short description
3/16/2007 8:17:31 AM - -63.69.129.2
Click to read this page
4/6/2008 7:23:14 AM - anonymous
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.