コード例 #1
0
ファイル: Main.cs プロジェクト: baburukiri/AOSharp
        private void WindowController_RemoveWindow_Hook(IntPtr pThis, IntPtr pWindow)
        {
            try
            {
                if (_pluginProxy != null)
                {
                    _pluginProxy.WindowDeleted(pWindow);
                }
            }
            catch (Exception) { }

            WindowController_c.RemoveWindow(pThis, pWindow);
        }
コード例 #2
0
ファイル: Main.cs プロジェクト: baburukiri/AOSharp
        private void WindowController_ViewDeleted_Hook(IntPtr pThis, IntPtr pView)
        {
            try
            {
                if (_pluginProxy != null)
                {
                    _pluginProxy.ViewDeleted(pView);
                }
            }
            catch (Exception) { }

            WindowController_c.ViewDeleted(pThis, pView);
        }