TCHITTESTINFO.cs 252 B

123456789101112131415
  1. using System;
  2. using System.Drawing;
  3. namespace LYFZ.OtherExpansion.Win32.Struct
  4. {
  5. public struct TCHITTESTINFO
  6. {
  7. public Point Point;
  8. public int Flags;
  9. public TCHITTESTINFO(Point location)
  10. {
  11. this.Point = location;
  12. this.Flags = 6;
  13. }
  14. }
  15. }