Hush – Rev 1

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

namespace Hush
{
    public static class Natives
    {
        #region Imports

        public const int WM_NCLBUTTONDOWN = 0xA1;
        public const int HT_CAPTION = 0x2;

        [DllImport("user32.dll")]
        public static extern int SendMessage(IntPtr hWnd, int Msg, int wParam, int lParam);

        [DllImport("user32.dll")]
        public static extern bool ReleaseCapture();

        #endregion
    }
}

Generated by GNU Enscript 1.6.5.90.