blob: f838d4931b871e6beaecf686771ca2030233bc27 (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
{$MACRO ON}
{$define Rsc := }
(******************************************************************************
*
* Copyright (c) 2000 Palm, Inc. or its subsidiaries.
* All rights reserved.
*
* File: TelephonyMgrUI.h
*
* Release: Palm OS SDK 4.0 (63220)
*
* Description:
* This is the header
*
* History:
* May 23, 2000 ARO Initial Release
* May,30, 2000 PPL Add Pin code notification
* Nov 11, 2000 PPL Remove unused staff
* Dec 03, 2000 LFe add flags
*
*****************************************************************************)
unit telephonymgrui;
interface
uses palmos;
(***********************************************************************
* Structure definition - to move to a public header file
***********************************************************************)
const
kTelNotifyErrorDetailsVersion = 1;
telNotifyErrorEvent = Rsc('terr');
telNotifyEnterCodeEvent = Rsc('tpin');
kTelTryAgainBit = $00000001;
kTelNoSetUpButtonBit = $00000002;
kTelAutoTryAgainBit = $00000004;
kTelAutoSetUpButtonBit = $00000008;
type
TelNotifyErrorDetailsType = record
version: UInt16;
error: Err;
ioFlags: UInt32;
messageP: PChar;
end;
TelNotifyErrorDetailsTag = TelNotifyErrorDetailsType;
TelNotifyErrorDetailsPtr = ^TelNotifyErrorDetailsType;
implementation
end.
|