Hush – Rev 2

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

namespace Hush.Utilities
{
    public static class DllImports
    {
        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();
    }
}

Generated by GNU Enscript 1.6.5.90.