NMCUSTOMDRAW.cs 264 B

1234567891011121314
  1. using System;
  2. namespace LYFZ.OtherExpansion.Win32.Struct
  3. {
  4. public struct NMCUSTOMDRAW
  5. {
  6. public NMHDR hdr;
  7. public uint dwDrawStage;
  8. public IntPtr hdc;
  9. public RECT rc;
  10. public IntPtr dwItemSpec;
  11. public uint uItemState;
  12. public IntPtr lItemlParam;
  13. }
  14. }