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