COMDLG_FILTERSPEC (Structures)
Last changed: -87.90.9.152

.
Summary
TODO - a short description

C# Definition:

[StructLayout ( LayoutKind.Sequential, CharSet = CharSet.Auto, Pack = 4 )]
struct COMDLG_FILTERSPEC
{
    [MarshalAs ( UnmanagedType.LPWStr )]
    public string pszName;

    [MarshalAs ( UnmanagedType.LPWStr )]
    public string pszSpec;
}

VB Definition:

    <StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Auto, Pack:=4)>
    Structure COMDLG_FILTERSPEC

    <MarshalAs(UnmanagedType.LPWStr)>
    Public pszName As String

    <MarshalAs(UnmanagedType.LPWStr)>
    Public pszSpec As String
    End Structure

User-Defined Field Types:

None.

Notes:

None.

Documentation