CustomFormat.pas 366 B

1234567891011121314151617181920212223242526
  1. unit CustomFormat;
  2. interface
  3. uses
  4. Graphics;
  5. type
  6. // TTimeOfDay is the structure which is transferred from the drop source to
  7. // the drop target.
  8. TTimeOfDay = record
  9. hours,
  10. minutes,
  11. seconds,
  12. milliseconds: word;
  13. color: TColor;
  14. end;
  15. const
  16. // Name of our custom clipboard format.
  17. sTimeOfDayName = 'TimeOfDay';
  18. implementation
  19. end.