Skip to content

Instantly share code, notes, and snippets.

@toptensoftware
Created November 12, 2016 22:56
Show Gist options
  • Select an option

  • Save toptensoftware/37619c09d0a45a0ad64056d8af92a673 to your computer and use it in GitHub Desktop.

Select an option

Save toptensoftware/37619c09d0a45a0ad64056d8af92a673 to your computer and use it in GitHub Desktop.
abstract class Callable : Base
{
public override bool ShouldBypass(Machine machine, ref Win32.MSG msg)
{
return false;
}
public abstract uint Call32from16(
Machine machine, bool hook, bool dlgproc,
ref Win16.MSG msg16, ref Win32.MSG msg32,
Func<IntPtr> callback);
public abstract IntPtr Call16from32(
Machine machine, bool hook, bool dlgproc,
ref Win32.MSG msg32, ref Win16.MSG msg16,
Func<uint> callback);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment