selday.pp 900 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {$MACRO ON}
  2. (******************************************************************************
  3. *
  4. * Copyright (c) 1994-2000 Palm, Inc. or its subsidiaries.
  5. * All rights reserved.
  6. *
  7. * File: SelDay.h
  8. *
  9. * Release: Palm OS SDK 4.0 (63220)
  10. *
  11. * Description:
  12. * This file defines the date picker month object's structures
  13. * and routines.
  14. *
  15. * History:
  16. * November 10, 1994 Created by Roger Flores
  17. *
  18. *****************************************************************************)
  19. unit selday;
  20. interface
  21. uses palmos, coretraps, datetime, day;
  22. const
  23. daySelectorMinYear = firstYear;
  24. daySelectorMaxYear = lastYear;
  25. function SelectDayV10(var month, day, year: Int16; const title: PChar): Boolean; syscall sysTrapSelectDayV10;
  26. function SelectDay(const selectDayBy: SelectDayType; var month, day, year: Int16; const title: PChar): Boolean; syscall sysTrapSelectDay;
  27. implementation
  28. end.