fontselect_.pp 605 B

123456789101112131415161718192021222324252627282930
  1. {$MACRO ON}
  2. (******************************************************************************
  3. *
  4. * Copyright (c) 1997-2000 Palm, Inc. or its subsidiaries.
  5. * All rights reserved.
  6. *
  7. * File: FontSelect.h
  8. *
  9. * Release: Palm OS SDK 4.0 (63220)
  10. *
  11. * Description:
  12. * This file defines the font selector routine.
  13. *
  14. * History:
  15. * September 10, 1997 Created by Art Lamb
  16. *
  17. *****************************************************************************)
  18. unit fontselect_;
  19. interface
  20. uses coretraps, font;
  21. function FontSelect(fontID: FontID): FontID; syscall sysTrapFontSelect;
  22. implementation
  23. end.