Win32Helper.cs 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. using System;
  2. using System.Runtime.InteropServices;
  3. using System.Windows.Forms;
  4. namespace LYFZ.OtherExpansion.Win32
  5. {
  6. public static class Win32Helper
  7. {
  8. public static bool LeftKeyPressed()
  9. {
  10. if (SystemInformation.MouseButtonsSwapped)
  11. {
  12. return NativeMethods.GetKeyState(2) < 0;
  13. }
  14. return NativeMethods.GetKeyState(1) < 0;
  15. }
  16. public static int HIWORD(int n)
  17. {
  18. return n >> 16 & 65535;
  19. }
  20. public static int HIWORD(IntPtr n)
  21. {
  22. return Win32Helper.HIWORD((int)((long)n));
  23. }
  24. public static int LOWORD(int n)
  25. {
  26. return n & 65535;
  27. }
  28. public static int LOWORD(IntPtr n)
  29. {
  30. return Win32Helper.LOWORD((int)((long)n));
  31. }
  32. public static int MAKELONG(int low, int high)
  33. {
  34. return high << 16 | (low & 65535);
  35. }
  36. public static IntPtr MAKELPARAM(int low, int high)
  37. {
  38. return (IntPtr)(high << 16 | (low & 65535));
  39. }
  40. public static int SignedHIWORD(int n)
  41. {
  42. return (int)((short)(n >> 16 & 65535));
  43. }
  44. public static int SignedHIWORD(IntPtr n)
  45. {
  46. return Win32Helper.SignedHIWORD((int)((long)n));
  47. }
  48. public static int SignedLOWORD(int n)
  49. {
  50. return (int)((short)(n & 65535));
  51. }
  52. public static int SignedLOWORD(IntPtr n)
  53. {
  54. return Win32Helper.SignedLOWORD((int)((long)n));
  55. }
  56. public static void Swap(ref int x, ref int y)
  57. {
  58. int tmp = x;
  59. x = y;
  60. y = tmp;
  61. }
  62. public static IntPtr ToIntPtr(object structure)
  63. {
  64. IntPtr lparam = IntPtr.Zero;
  65. lparam = Marshal.AllocCoTaskMem(Marshal.SizeOf(structure));
  66. Marshal.StructureToPtr(structure, lparam, false);
  67. return lparam;
  68. }
  69. public static void SetRedraw(IntPtr hWnd, bool redraw)
  70. {
  71. IntPtr ptr = redraw ? Result.TRUE : Result.FALSE;
  72. NativeMethods.SendMessage(hWnd, 11, ptr, 0);
  73. }
  74. }
  75. }