launcher.pp 949 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {$MACRO ON}
  2. (******************************************************************************
  3. *
  4. * Copyright (c) 1995-2000 Palm, Inc. or its subsidiaries.
  5. * All rights reserved.
  6. *
  7. * File: Launcher.h
  8. *
  9. * Release: Palm OS SDK 4.0 (63220)
  10. *
  11. * Description:
  12. * These are the routines for the launcher.
  13. *
  14. * History:
  15. * April 27, 1995 Created by Roger Flores
  16. * July 21, 2000 Deleted (mostly) by Bob Ebert, old launcher dialog not supported
  17. *
  18. *****************************************************************************)
  19. unit launcher;
  20. interface
  21. uses coretraps;
  22. (************************************************************
  23. * Launcher procedures
  24. *************************************************************)
  25. // We're leaving the trap in place for now, but it just does a SysUIAppSwitch to
  26. // launch the real launcher. --Bob 21-Jul-00
  27. procedure SysAppLauncherDialog; syscall sysTrapSysAppLauncherDialog;
  28. implementation
  29. end.