blob: 757c5f1a6d88a6ac11781b9bcabcf6b521dd2f19 (
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
|
{$MACRO ON}
(******************************************************************************
*
* Copyright (c) 1994-2000 Palm, Inc. or its subsidiaries.
* All rights reserved.
*
* File: PhoneLookup.h
*
* Release: Palm OS SDK 4.0 (63220)
*
* Description:
* This file defines phone number lookup structures and routines.
*
* History:
* July 23, 1996 Created by Art Lamb
* March 24, 2000 Ludovic Ferrandis: Add custom API
*
*****************************************************************************)
unit phonelookup;
interface
uses coretraps, field, applaunchcmd;
procedure PhoneNumberLookup(var fldP: FieldType); syscall sysTrapPhoneNumberLookup;
procedure PhoneNumberLookupCustom(var fldP: FieldType; params: AddrLookupParamsPtr; useClipboard: Boolean); syscall sysTrapPhoneNumberLookupCustom;
implementation
end.
|