Hush – Blame information for rev

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System;
2 using System.Runtime.InteropServices;
3  
4 namespace Hush
5 {
6 public static class Natives
7 {
8 #region Imports
9  
10 public const int WM_NCLBUTTONDOWN = 0xA1;
11 public const int HT_CAPTION = 0x2;
12  
13 [DllImport("user32.dll")]
14 public static extern int SendMessage(IntPtr hWnd, int Msg, int wParam, int lParam);
15  
16 [DllImport("user32.dll")]
17 public static extern bool ReleaseCapture();
18  
19 #endregion
20 }
21 }