Skip to content

Instantly share code, notes, and snippets.

@toptensoftware
Created November 12, 2016 22:52
Show Gist options
  • Save toptensoftware/d89321ffdab4da5b63080d421da7a04c to your computer and use it in GitHub Desktop.
Save toptensoftware/d89321ffdab4da5b63080d421da7a04c to your computer and use it in GitHub Desktop.
abstract class Postable : Base
{
public override bool ShouldBypass(Machine machine, ref Win32.MSG msg)
{
return false;
}
public abstract void To32(Machine machine, ref Win16.MSG msg16, ref Win32.MSG msg32);
public abstract void To16(Machine machine, ref Win32.MSG msg32, ref Win16.MSG msg16);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment