Tsukikage.WindowsUtil.WindowSubclassingMessageFilter.UnregisterProc C# (CSharp) Method

UnregisterProc() public method

public UnregisterProc ( int msg, MessageProc proc ) : void
msg int
proc MessageProc
return void
        public void UnregisterProc(int msg, MessageProc proc)
        {
            if (procs.ContainsKey(msg))
            {
                procs[msg] -= proc;
            }
        }