NativeMethods.cs 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332
  1. using LYFZ.OtherExpansion.SkinControl;
  2. using LYFZ.OtherExpansion.Win32.Callback;
  3. using LYFZ.OtherExpansion.Win32.Struct;
  4. using System;
  5. using System.Runtime.InteropServices;
  6. namespace LYFZ.OtherExpansion.Win32
  7. {
  8. public class NativeMethods
  9. {
  10. public struct PCURSORINFO
  11. {
  12. public int cbSize;
  13. public int flag;
  14. public IntPtr hCursor;
  15. public NativeMethods.Point ptScreenPos;
  16. }
  17. public struct Size
  18. {
  19. public int cx;
  20. public int cy;
  21. public Size(int x, int y)
  22. {
  23. this.cx = x;
  24. this.cy = y;
  25. }
  26. }
  27. [StructLayout(LayoutKind.Sequential, Pack = 1)]
  28. public struct BLENDFUNCTION
  29. {
  30. public byte BlendOp;
  31. public byte BlendFlags;
  32. public byte SourceConstantAlpha;
  33. public byte AlphaFormat;
  34. }
  35. public struct Point
  36. {
  37. public int x;
  38. public int y;
  39. public Point(int x, int y)
  40. {
  41. this.x = x;
  42. this.y = y;
  43. }
  44. }
  45. public enum ComboBoxButtonState
  46. {
  47. STATE_SYSTEM_NONE,
  48. STATE_SYSTEM_INVISIBLE = 32768,
  49. STATE_SYSTEM_PRESSED = 8
  50. }
  51. public struct ComboBoxInfo
  52. {
  53. public int cbSize;
  54. public RECT rcItem;
  55. public RECT rcButton;
  56. public NativeMethods.ComboBoxButtonState stateButton;
  57. public IntPtr hwndCombo;
  58. public IntPtr hwndEdit;
  59. public IntPtr hwndList;
  60. }
  61. public const int ULW_ALPHA = 2;
  62. public const int WM_USER = 1024;
  63. public const int EM_GETOLEINTERFACE = 1084;
  64. public const int CWP_SKIPDISABLED = 2;
  65. public const int CWP_SKIPINVISIBL = 1;
  66. public const int CWP_All = 0;
  67. private NativeMethods()
  68. {
  69. }
  70. [DllImport("user32.dll")]
  71. public static extern bool GetComboBoxInfo(IntPtr hwndCombo, ref NativeMethods.ComboBoxInfo info);
  72. [DllImport("user32.DLL")]
  73. public static extern uint GetCaretBlinkTime();
  74. [DllImport("user32.dll")]
  75. public static extern IntPtr LoadCursorFromFile(string fileName);
  76. [DllImport("user32.dll")]
  77. public static extern IntPtr ChildWindowFromPointEx(IntPtr pHwnd, NativeMethods.Point pt, uint uFlgs);
  78. [DllImport("user32.dll")]
  79. public static extern bool GetCursorInfo(out NativeMethods.PCURSORINFO pci);
  80. [DllImport("user32.dll")]
  81. public static extern bool SetCursorPos(int x, int y);
  82. [DllImport("user32.dll")]
  83. public static extern bool ReleaseCapture();
  84. [DllImport("user32.dll")]
  85. public static extern bool AnimateWindow(IntPtr whnd, int dwtime, int dwflag);
  86. [DllImport("user32.dll")]
  87. public static extern void mouse_event(int dwFlags, int dx, int dy, int dwData, int dwExtraInfo);
  88. [DllImport("user32.dll")]
  89. public static extern bool LockWindowUpdate(IntPtr hWndLock);
  90. [DllImport("user32.dll")]
  91. public static extern bool MessageBeep(int uType);
  92. [DllImport("user32.dll")]
  93. public static extern IntPtr BeginPaint(IntPtr hWnd, ref PAINTSTRUCT ps);
  94. [DllImport("user32.dll")]
  95. public static extern bool EndPaint(IntPtr hWnd, ref PAINTSTRUCT ps);
  96. [DllImport("user32.dll")]
  97. public static extern IntPtr GetSystemMenu(IntPtr hWnd, bool bRevert);
  98. [DllImport("user32.dll", SetLastError = true)]
  99. public static extern bool TrackPopupMenuEx(IntPtr hMenu, uint uFlags, int x, int y, IntPtr hWnd, IntPtr tpmParams);
  100. [DllImport("user32.dll")]
  101. public static extern IntPtr TrackPopupMenu(IntPtr hMenu, int uFlags, int x, int y, int nReserved, IntPtr hWnd, IntPtr par);
  102. [DllImport("user32.dll")]
  103. public static extern bool RedrawWindow(IntPtr hWnd, ref RECT rectUpdate, IntPtr hrgnUpdate, int flags);
  104. [DllImport("user32.dll")]
  105. public static extern bool RedrawWindow(IntPtr hWnd, IntPtr rectUpdate, IntPtr hrgnUpdate, int flags);
  106. [DllImport("user32.dll", CharSet = CharSet.Auto, ExactSpelling = true)]
  107. public static extern bool AdjustWindowRectEx(ref RECT lpRect, int dwStyle, bool bMenu, int dwExStyle);
  108. [DllImport("user32.dll")]
  109. public static extern int GetSystemMetrics(int nIndex);
  110. [DllImport("user32.dll")]
  111. public static extern bool GetWindowInfo(IntPtr hwnd, ref WINDOWINFO pwi);
  112. [DllImport("user32.dll")]
  113. public static extern void DisableProcessWindowsGhosting();
  114. [DllImport("user32.dll")]
  115. public static extern IntPtr FindWindow(string lpClassName, string lpWindowName);
  116. [DllImport("user32.dll")]
  117. public static extern IntPtr FindWindowEx(IntPtr hwndParent, IntPtr hwndChildAfter, string lpszClass, string lpszWindow);
  118. [DllImport("User32.dll")]
  119. public static extern bool FlashWindow(IntPtr hWnd, bool bInvert);
  120. [DllImport("user32.dll")]
  121. public static extern IntPtr DefWindowProc(IntPtr hWnd, int uMsg, IntPtr wParam, IntPtr lParam);
  122. [DllImport("user32.dll", BestFitMapping = false, CharSet = CharSet.Unicode, SetLastError = true)]
  123. public static extern IntPtr CreateWindowEx(int exstyle, string lpClassName, string lpWindowName, int dwStyle, int x, int y, int nWidth, int nHeight, IntPtr hwndParent, IntPtr Menu, IntPtr hInstance, IntPtr lpParam);
  124. [DllImport("user32.dll")]
  125. [return: MarshalAs(UnmanagedType.Bool)]
  126. public static extern bool DestroyWindow(IntPtr hWnd);
  127. [DllImport("user32.dll")]
  128. public static extern IntPtr LoadIcon(IntPtr hInstance, int lpIconName);
  129. [DllImport("user32.dll")]
  130. [return: MarshalAs(UnmanagedType.Bool)]
  131. public static extern bool DestroyIcon(IntPtr hIcon);
  132. [DllImport("user32.dll")]
  133. [return: MarshalAs(UnmanagedType.Bool)]
  134. public static extern bool IsZoomed(IntPtr hWnd);
  135. [DllImport("user32.dll")]
  136. [return: MarshalAs(UnmanagedType.Bool)]
  137. public static extern bool SetWindowPos(IntPtr hWnd, IntPtr hWndAfter, int x, int y, int cx, int cy, uint flags);
  138. [DllImport("gdi32.dll")]
  139. public static extern int CreateRoundRectRgn(int x1, int y1, int x2, int y2, int x3, int y3);
  140. [DllImport("user32.dll")]
  141. public static extern int SetWindowRgn(IntPtr hWnd, IntPtr hRgn, bool bRedraw);
  142. [DllImport("user32.dll")]
  143. public static extern int SetWindowRgn(IntPtr hwnd, int hRgn, bool bRedraw);
  144. [DllImport("user32.dll", CharSet = CharSet.Auto, ExactSpelling = true)]
  145. public static extern bool InvalidateRect(IntPtr hWnd, ref RECT rect, bool erase);
  146. [DllImport("user32.dll")]
  147. public static extern bool IsWindowVisible(IntPtr hWnd);
  148. [DllImport("user32.dll")]
  149. [return: MarshalAs(UnmanagedType.Bool)]
  150. public static extern bool ShowWindow(IntPtr hWnd, int nCmdShow);
  151. [DllImport("user32.dll")]
  152. public static extern IntPtr GetParent(IntPtr hWnd);
  153. [DllImport("user32.dll")]
  154. public static extern bool GetClientRect(IntPtr hWnd, ref RECT r);
  155. [DllImport("user32.dll")]
  156. [return: MarshalAs(UnmanagedType.Bool)]
  157. public static extern bool GetWindowRect(IntPtr hWnd, ref RECT lpRect);
  158. [DllImport("user32.dll")]
  159. public static extern int OffsetRect(ref RECT lpRect, int x, int y);
  160. [DllImport("user32")]
  161. public static extern int GetWindowLong(IntPtr hwnd, int nIndex);
  162. [DllImport("user32.dll")]
  163. public static extern IntPtr GetWindowLongPtr(IntPtr hwnd, int nIndex);
  164. [DllImport("user32.dll")]
  165. public static extern int SetWindowLong(IntPtr hwnd, int nIndex, int dwNewLong);
  166. [DllImport("user32.dll", CharSet = CharSet.Auto)]
  167. public static extern int GetWindowLong(HandleRef hWnd, int nIndex);
  168. [DllImport("user32.dll", CharSet = CharSet.Auto)]
  169. public static extern IntPtr SetWindowLong(HandleRef hWnd, int nIndex, int dwNewLong);
  170. [DllImport("user32.dll")]
  171. public static extern IntPtr SetWindowLongPtr(IntPtr hwnd, int nIndex, IntPtr dwNewLong);
  172. [DllImport("user32.dll")]
  173. [return: MarshalAs(UnmanagedType.Bool)]
  174. public static extern bool GetCursorPos(ref NativeMethods.Point lpPoint);
  175. [DllImport("user32.dll")]
  176. public static extern bool ScreenToClient(IntPtr hWnd, ref NativeMethods.Point lpPoint);
  177. [DllImport("user32.dll")]
  178. public static extern IntPtr GetDC(IntPtr handle);
  179. [DllImport("USER32.dll")]
  180. public static extern IntPtr GetDCEx(IntPtr hWnd, IntPtr hrgnClip, int flags);
  181. [DllImport("user32.dll")]
  182. public static extern IntPtr GetWindowDC(IntPtr handle);
  183. [DllImport("user32.dll")]
  184. public static extern int ReleaseDC(IntPtr handle, IntPtr hdc);
  185. [DllImport("user32.dll")]
  186. public static extern IntPtr GetDesktopWindow();
  187. [DllImport("user32.dll")]
  188. public static extern bool TrackMouseEvent(ref TRACKMOUSEEVENT lpEventTrack);
  189. [DllImport("user32.dll")]
  190. [return: MarshalAs(UnmanagedType.Bool)]
  191. public static extern bool PtInRect(ref RECT lprc, NativeMethods.Point pt);
  192. [DllImport("user32.dll")]
  193. public static extern bool EqualRect([In] ref RECT lprc1, [In] ref RECT lprc2);
  194. [DllImport("user32.dll", ExactSpelling = true)]
  195. public static extern IntPtr SetTimer(IntPtr hWnd, int nIDEvent, uint uElapse, IntPtr lpTimerFunc);
  196. [DllImport("user32.dll", ExactSpelling = true)]
  197. [return: MarshalAs(UnmanagedType.Bool)]
  198. public static extern bool KillTimer(IntPtr hWnd, uint uIDEvent);
  199. [DllImport("user32.dll")]
  200. public static extern int SetFocus(IntPtr hWnd);
  201. [DllImport("user32.dll", SetLastError = true)]
  202. [return: MarshalAs(UnmanagedType.Bool)]
  203. public static extern bool PostMessage(IntPtr hWnd, int Msg, IntPtr wParam, IntPtr lParam);
  204. [DllImport("user32.dll")]
  205. public static extern int SendMessage(IntPtr hWnd, int msg, int wParam, int lParam);
  206. [DllImport("User32.dll", CharSet = CharSet.Auto, PreserveSig = false)]
  207. public static extern IRichEditOle SendMessage(IntPtr hWnd, int message, int wParam);
  208. [DllImport("user32.dll")]
  209. public static extern int SendMessage(IntPtr hWnd, int msg, int wParam, ref TOOLINFO lParam);
  210. [DllImport("user32.dll")]
  211. public static extern int SendMessage(IntPtr hWnd, int msg, int wParam, IntPtr lParam);
  212. [DllImport("user32.dll")]
  213. public static extern int SendMessage(IntPtr hWnd, int msg, int wParam, ref RECT lParam);
  214. [DllImport("user32.dll")]
  215. public static extern int SendMessage(IntPtr hWnd, int msg, IntPtr wParam, [MarshalAs(UnmanagedType.LPTStr)] string lParam);
  216. [DllImport("user32.dll")]
  217. public static extern int SendMessage(IntPtr hWnd, int msg, IntPtr wParam, ref NMHDR lParam);
  218. [DllImport("user32.dll")]
  219. public static extern int SendMessage(IntPtr hWnd, int msg, IntPtr wParam, int lParam);
  220. [DllImport("user32.dll")]
  221. public static extern int SendMessage(IntPtr hWnd, int msg, int wParam, ref SCROLLBARINFO lParam);
  222. [DllImport("user32.dll")]
  223. public static extern short GetKeyState(int nVirtKey);
  224. [DllImport("user32.dll")]
  225. public static extern bool ValidateRect(IntPtr hWnd, ref RECT lpRect);
  226. [DllImport("user32.dll")]
  227. public static extern int GetScrollBarInfo(IntPtr hWnd, uint idObject, ref SCROLLBARINFO psbi);
  228. [DllImport("user32.dll")]
  229. public static extern bool GetScrollInfo(IntPtr hwnd, int fnBar, ref SCROLLINFO scrollInfo);
  230. [DllImport("user32.dll")]
  231. public static extern bool EnableScrollBar(IntPtr hWnd, int wSBflags, int wArrows);
  232. public static IntPtr GetClassLongPtr(IntPtr hWnd, int nIndex)
  233. {
  234. if (IntPtr.Size == 8)
  235. {
  236. return NativeMethods.GetClassLongPtr64(hWnd, nIndex);
  237. }
  238. return NativeMethods.GetClassLongPtr32(hWnd, nIndex);
  239. }
  240. [DllImport("user32.dll", EntryPoint = "GetClassLong")]
  241. private static extern IntPtr GetClassLongPtr32(IntPtr hWnd, int nIndex);
  242. [DllImport("user32.dll", EntryPoint = "GetClassLongPtr")]
  243. private static extern IntPtr GetClassLongPtr64(IntPtr hWnd, int nIndex);
  244. [DllImport("user32.dll", SetLastError = true)]
  245. public static extern bool DrawIconEx(IntPtr hdc, int xLeft, int yTop, IntPtr hIcon, int cxWidth, int cyHeight, int istepIfAniCur, IntPtr hbrFlickerFreeDraw, int diFlags);
  246. [DllImport("user32.dll")]
  247. [return: MarshalAs(UnmanagedType.Bool)]
  248. public static extern bool GetWindowPlacement(IntPtr hWnd, ref WINDOWPLACEMENT lpwndpl);
  249. [DllImport("user32.dll")]
  250. [return: MarshalAs(UnmanagedType.Bool)]
  251. public static extern bool SetWindowPlacement(IntPtr hWnd, ref WINDOWPLACEMENT lpwndpl);
  252. [DllImport("user32.dll", ExactSpelling = true, SetLastError = true)]
  253. public static extern bool UpdateLayeredWindow(IntPtr hwnd, IntPtr hdcDst, ref NativeMethods.Point pptDst, ref NativeMethods.Size psize, IntPtr hdcSrc, ref NativeMethods.Point pprSrc, int crKey, ref NativeMethods.BLENDFUNCTION pblend, int dwFlags);
  254. [DllImport("USER32.dll", CharSet = CharSet.Auto)]
  255. public static extern IntPtr SetWindowsHookEx(int idHook, HookProc lpfn, int hMod, int dwThreadId);
  256. [DllImport("USER32.dll", CharSet = CharSet.Auto)]
  257. public static extern int CallNextHookEx(IntPtr hhk, int nCode, IntPtr wParam, IntPtr lParam);
  258. [DllImport("USER32.dll", CharSet = CharSet.Auto)]
  259. public static extern bool UnhookWindowsHookEx(IntPtr hhk);
  260. [DllImport("gdi32.dll")]
  261. public static extern int ExcludeClipRect(IntPtr hdc, int nLeftRect, int nTopRect, int nRightRect, int nBottomRect);
  262. [DllImport("gdi32.dll", EntryPoint = "GdiAlphaBlend")]
  263. public static extern bool AlphaBlend(IntPtr hdcDest, int nXOriginDest, int nYOriginDest, int nWidthDest, int nHeightDest, IntPtr hdcSrc, int nXOriginSrc, int nYOriginSrc, int nWidthSrc, int nHeightSrc, NativeMethods.BLENDFUNCTION blendFunction);
  264. [DllImport("gdi32.dll")]
  265. [return: MarshalAs(UnmanagedType.Bool)]
  266. public static extern bool StretchBlt(IntPtr hDest, int X, int Y, int nWidth, int nHeight, IntPtr hdcSrc, int sX, int sY, int nWidthSrc, int nHeightSrc, int dwRop);
  267. [DllImport("gdi32.dll")]
  268. [return: MarshalAs(UnmanagedType.Bool)]
  269. public static extern bool BitBlt(IntPtr hdc, int nXDest, int nYDest, int nWidth, int nHeight, IntPtr hdcSrc, int nXSrc, int nYSrc, int dwRop);
  270. [DllImport("gdi32.dll")]
  271. public static extern IntPtr CreateDCA([MarshalAs(UnmanagedType.LPStr)] string lpszDriver, [MarshalAs(UnmanagedType.LPStr)] string lpszDevice, [MarshalAs(UnmanagedType.LPStr)] string lpszOutput, int lpInitData);
  272. [DllImport("gdi32.dll")]
  273. public static extern IntPtr CreateDCW([MarshalAs(UnmanagedType.LPWStr)] string lpszDriver, [MarshalAs(UnmanagedType.LPWStr)] string lpszDevice, [MarshalAs(UnmanagedType.LPWStr)] string lpszOutput, int lpInitData);
  274. [DllImport("gdi32.dll")]
  275. public static extern IntPtr CreateDC(string lpszDriver, string lpszDevice, string lpszOutput, int lpInitData);
  276. [DllImport("gdi32.dll")]
  277. public static extern IntPtr CreateCompatibleDC(IntPtr hdc);
  278. [DllImport("gdi32.dll")]
  279. public static extern IntPtr CreateCompatibleBitmap(IntPtr hdc, int nWidth, int nHeight);
  280. [DllImport("gdi32.dll")]
  281. [return: MarshalAs(UnmanagedType.Bool)]
  282. public static extern bool DeleteDC(IntPtr hdc);
  283. [DllImport("gdi32.dll", ExactSpelling = true)]
  284. public static extern IntPtr SelectObject(IntPtr hdc, IntPtr hgdiobj);
  285. [DllImport("gdi32.dll")]
  286. [return: MarshalAs(UnmanagedType.Bool)]
  287. public static extern bool DeleteObject(IntPtr hObject);
  288. [DllImport("gdi32.dll")]
  289. public static extern uint SetPixel(IntPtr hdc, int X, int Y, int crColor);
  290. [DllImport("gdi32.dll", CharSet = CharSet.Auto, ExactSpelling = true, SetLastError = true)]
  291. public static extern IntPtr CreateRectRgn(int x1, int y1, int x2, int y2);
  292. [DllImport("gdi32.dll", ExactSpelling = true, SetLastError = true)]
  293. public static extern int CombineRgn(IntPtr hRgn, IntPtr hRgn1, IntPtr hRgn2, int nCombineMode);
  294. [DllImport("comctl32.dll", CallingConvention = CallingConvention.StdCall)]
  295. public static extern bool InitCommonControlsEx(ref INITCOMMONCONTROLSEX iccex);
  296. [DllImport("kernel32.dll", CharSet = CharSet.Auto, ExactSpelling = true)]
  297. public static extern int GetCurrentThreadId();
  298. [DllImport("kernel32.dll")]
  299. public static extern int RtlMoveMemory(ref NMHDR destination, IntPtr source, int length);
  300. [DllImport("kernel32.dll")]
  301. public static extern int RtlMoveMemory(ref NMTTDISPINFO destination, IntPtr source, int length);
  302. [DllImport("kernel32.dll")]
  303. public static extern int RtlMoveMemory(IntPtr destination, ref NMTTDISPINFO Source, int length);
  304. [DllImport("kernel32.dll")]
  305. public static extern int RtlMoveMemory(ref POINT destination, ref RECT Source, int length);
  306. [DllImport("kernel32.dll")]
  307. public static extern int RtlMoveMemory(ref NMTTCUSTOMDRAW destination, IntPtr Source, int length);
  308. [DllImport("kernel32.dll")]
  309. public static extern int RtlMoveMemory(ref NMCUSTOMDRAW destination, IntPtr Source, int length);
  310. [DllImport("kernel32.dll")]
  311. public static extern int MulDiv(int nNumber, int nNumerator, int nDenominator);
  312. [DllImport("uxtheme.dll", CharSet = CharSet.Unicode, ExactSpelling = true)]
  313. public static extern int SetWindowTheme(IntPtr hWnd, string pszSubAppName, string pszSubIdList);
  314. [DllImport("uxtheme.dll")]
  315. [return: MarshalAs(UnmanagedType.Bool)]
  316. public static extern bool IsAppThemed();
  317. [DllImport("shell32.dll", CharSet = CharSet.Auto)]
  318. public static extern int FindExecutable(string filename, string directory, ref string result);
  319. [DllImport("shell32.dll", CharSet = CharSet.Auto)]
  320. public static extern int ShellExecute(IntPtr hwnd, string lpOperation, string lpFile, string lpParameters, string lpDirectory, int nShowCmd);
  321. [DllImport("kernel32.dll")]
  322. public static extern int WinExec(string lpCmdLine, int nCmdShow);
  323. [DllImport("ole32.dll")]
  324. public static extern int CreateILockBytesOnHGlobal(IntPtr hGlobal, bool fDeleteOnRelease, out ILockBytes ppLkbyt);
  325. [DllImport("ole32.dll")]
  326. public static extern int StgCreateDocfileOnILockBytes(ILockBytes plkbyt, uint grfMode, uint reserved, out IStorage ppstgOpen);
  327. [DllImport("ole32.dll")]
  328. public static extern int OleCreateFromFile([In] ref Guid rclsid, [MarshalAs(UnmanagedType.LPWStr)] string lpszFileName, [In] ref Guid riid, uint renderopt, ref FORMATETC pFormatEtc, IOleClientSite pClientSite, IStorage pStg, [MarshalAs(UnmanagedType.IUnknown)] out object ppvObj);
  329. [DllImport("ole32.dll")]
  330. public static extern int OleSetContainedObject([MarshalAs(UnmanagedType.IUnknown)] object pUnk, bool fContained);
  331. }
  332. }