summaryrefslogtreecommitdiff
path: root/fpcsrc/packages/palmunits/src/aboutbox.pp
blob: a7e51267b8754bfe25617dd66b4e07b83ae89cc7 (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
{$MACRO ON}

(******************************************************************************
 *
 * Copyright (c) 1995-2000 Palm, Inc. or its subsidiaries.
 * All rights reserved.
 *
 * File: AboutBox.h
 *
 * Release: Palm OS SDK 4.0 (63220)
 *
 * Description:
 *   This file defines About Box routines
 *
 * History:
 *    October 25th, 1995   Created by Christopher Raff
 *
 *****************************************************************************)

unit aboutbox;

interface

uses  palmos,coretraps;

// WARNING!!! This routine is for the private use of Palm applications.
// It is released with the public headers so that the sample apps
// released with the SDK can be compiled by developers.

procedure AbtShowAbout(creator: UInt32); syscall sysTrapAbtShowAbout;

implementation

end.