aboutbox.pp 795 B

12345678910111213141516171819202122232425262728293031323334
  1. {$MACRO ON}
  2. (******************************************************************************
  3. *
  4. * Copyright (c) 1995-2000 Palm, Inc. or its subsidiaries.
  5. * All rights reserved.
  6. *
  7. * File: AboutBox.h
  8. *
  9. * Release: Palm OS SDK 4.0 (63220)
  10. *
  11. * Description:
  12. * This file defines About Box routines
  13. *
  14. * History:
  15. * October 25th, 1995 Created by Christopher Raff
  16. *
  17. *****************************************************************************)
  18. unit aboutbox;
  19. interface
  20. uses palmos,coretraps;
  21. // WARNING!!! This routine is for the private use of Palm applications.
  22. // It is released with the public headers so that the sample apps
  23. // released with the SDK can be compiled by developers.
  24. procedure AbtShowAbout(creator: UInt32); syscall sysTrapAbtShowAbout;
  25. implementation
  26. end.