TRACKMOUSEEVENT.cs 197 B

1234567891011
  1. using System;
  2. namespace LYFZ.OtherExpansion.Win32.Struct
  3. {
  4. public struct TRACKMOUSEEVENT
  5. {
  6. public uint cbSize;
  7. public uint dwFlags;
  8. public IntPtr hwndTrack;
  9. public uint dwHoverTime;
  10. }
  11. }