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.
ChangeWindowMessageFilterEx (Structures)
.
Summary
TODO - a short description
C# Definition:
[DllImport("user32")]
public static extern bool ChangeWindowMessageFilterEx(IntPtr hWnd, uint msg, ChangeWindowMessageFilterExAction action,ref CHANGEFILTERSTRUCT changeInfo);
VB Definition:
Structure ChangeWindowMessageFilterEx
Public TODO
End Structure
User-Defined Field Types:
public enum MessageFilterInfo : uint
{
None=0, AlreadyAllowed=1, AlreadyDisAllowed=2, AllowedHigher=3
};
public enum ChangeWindowMessageFilterExAction : uint
{
Reset = 0, Allow = 1, DisAllow = 2
};
[StructLayout(LayoutKind.Sequential)]
public struct CHANGEFILTERSTRUCT
{
public uint size;
public MessageFilterInfo info;
}
Notes:
Sample Code:
CHANGEFILTERSTRUCT filterStatus = new CHANGEFILTERSTRUCT();
filterStatus.size= (uint) Marshal.SizeOf(new CHANGEFILTERSTRUCT());
filterStatus.info = 0;
ChangeWindowMessageFilterEx(Handle,_message,ChangeWindowMessageFilterExAction.Allow, ref filterStatus);
Documentation
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.