ProcessUpdateNotifications() public method

public ProcessUpdateNotifications ( ) : void
return void
Beispiel #1
0
        protected override void WndProc(ref Message m)
        {
            switch (m.Msg)
            {
            case WM_UPDATENOTIFY:
                RtdUpdateSynchronization.ProcessUpdateNotifications();
                break;

            case WM_SYNCMACRO:
            case WM_TIMER:
                RunMacroSynchronization.ProcessRunSyncMacroMessage();
                break;

            default:
                base.WndProc(ref m);
                break;
            }
        }