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.
CHANGEFILTERSTRUCT (Structures)
.
C# Definition:
/// <summary>
/// Contains extended result information obtained by calling the ChangeWindowMessageFilterEx function
/// </summary>
public struct CHANGEFILTERSTRUCT
{
/// <summary>
/// The size of the structure, in bytes. Must be set to sizeof(CHANGEFILTERSTRUCT)
/// </summary>
public UInt32 cbSize;
/// <summary>
/// If the function succeeds, this field contains a value from the ExtStatusEnum.
/// </summary>
public UInt32 ExtStatus;
}
/// <summary>
/// The size of the structure, in bytes. Must be set to sizeof(CHANGEFILTERSTRUCT)
/// </summary>
public UInt32 cbSize;
/// <summary>
/// If the function succeeds, this field contains a value from the ExtStatusEnum.
/// </summary>
public UInt32 ExtStatus;
}
VB Definition:
Structure CHANGEFILTERSTRUCT
Public TODO
End Structure