コード例 #1
0
ファイル: NativeMethods.cs プロジェクト: zhh007/Chromely
        /// <summary>
        /// The quit.
        /// </summary>
        internal static void Quit()
        {
            if (CefRuntime.Platform == CefRuntimePlatform.Windows)
            {
                Win.gtk_main_quit();
            }

            if (CefRuntime.Platform == CefRuntimePlatform.Linux)
            {
                Linux.gtk_main_quit();
            }
        }