Win32.cs 510 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Runtime.InteropServices;
  5. namespace FastReport.FastQueryBuilder
  6. {
  7. internal class Win32
  8. {
  9. public const int WM_NCLBUTTONDOWN = 0xA1;
  10. public const int HT_CAPTION = 0x2;
  11. [DllImportAttribute("user32.dll")]
  12. public static extern int SendMessage(IntPtr hWnd, int Msg, int wParam, int lParam);
  13. [DllImportAttribute("user32.dll")]
  14. public static extern bool ReleaseCapture();
  15. }
  16. }