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

(******************************************************************************
 *
 * Copyright (c) 1997-2000 Palm, Inc. or its subsidiaries.
 * All rights reserved.
 *
 * File: FontSelect.h
 *
 * Release: Palm OS SDK 4.0 (63220)
 *
 * Description:
 *   This file defines the font selector routine.
 *
 * History:
 *    September 10, 1997   Created by Art Lamb
 *
 *****************************************************************************)

unit fontselect_;

interface

uses coretraps, font;

function FontSelect(fontID: FontID): FontID; syscall sysTrapFontSelect;

implementation

end.