Toasts – Rev 41

Subversion Repositories:
Rev:
using System;
using System.Runtime.InteropServices;

namespace Toasts
{
    internal static class NativeMethods
    {
        #region Private Methods

        /// <summary>
        ///     Gets the handle of the window that currently has focus.
        /// </summary>
        /// <returns>
        ///     The handle of the window that currently has focus.
        /// </returns>
        [DllImport("user32")]
        internal static extern IntPtr GetForegroundWindow();

        /// <summary>
        ///     Activates the specified window.
        /// </summary>
        /// <param name="hWnd">
        ///     The handle of the window to be focused.
        /// </param>
        /// <returns>
        ///     True if the window was focused; False otherwise.
        /// </returns>
        [DllImport("user32")]
        internal static extern bool SetForegroundWindow(IntPtr hWnd);

        /// <summary>
        ///     Windows API function to animate a window.
        /// </summary>
        [DllImport("user32")]
        internal static extern bool AnimateWindow(IntPtr hWnd, int dwTime, int dwFlags);

        [DllImport("Gdi32.dll", EntryPoint = "CreateRoundRectRgn")]
        internal static extern IntPtr CreateRoundRectRgn
        (
            int nLeftRect, // x-coordinate of upper-left corner
            int nTopRect, // y-coordinate of upper-left corner
            int nRightRect, // x-coordinate of lower-right corner
            int nBottomRect, // y-coordinate of lower-right corner
            int nWidthEllipse, // width of ellipse
            int nHeightEllipse // height of ellipse
        );

        #endregion
    }
}

Generated by GNU Enscript 1.6.5.90.