NMHDR.cs 257 B

12345678910111213141516
  1. using System;
  2. namespace LYFZ.OtherExpansion.Win32.Struct
  3. {
  4. public struct NMHDR
  5. {
  6. public IntPtr hwndFrom;
  7. public int idFrom;
  8. public int code;
  9. public NMHDR(int flag)
  10. {
  11. this.hwndFrom = IntPtr.Zero;
  12. this.idFrom = 0;
  13. this.code = 0;
  14. }
  15. }
  16. }