CWPSTRUCT.cs 267 B

12345678910111213
  1. using System;
  2. using System.Runtime.InteropServices;
  3. namespace LYFZ.OtherExpansion.Win32.Struct
  4. {
  5. [StructLayout(LayoutKind.Sequential)]
  6. public sealed class CWPSTRUCT
  7. {
  8. public IntPtr lParam;
  9. public IntPtr wParam;
  10. public int message;
  11. public IntPtr hwnd;
  12. }
  13. }