Created
November 12, 2016 22:52
-
-
Save toptensoftware/d89321ffdab4da5b63080d421da7a04c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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