blob: aededd384dbcd9d70358ec8368b0d7a31cfcb7bf (
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
{$MACRO ON}
{$define Rsc := }
(******************************************************************************
*
* Copyright (c) 1995-2000 Palm, Inc. or its subsidiaries.
* All rights reserved.
*
* File: HelperServiceClass.h
*
* Release: Palm OS SDK 4.0 (63220)
*
* Description:
* Public header file for the service class ID's and extended details
* data structures used with the "address book helper" API.
*
* For each Service Class ID, this header file also defines the
* corresponding extended details data structures that may
* optionally be passed as the 'pDetails' element in the
* HelperNotifyExecuteType structure. We strongly recommend that
* every extra details data structure include a version number,
* which will alow the structure to be extended by adding new structure
* elements later.
*
* The Service Class ID is a 32-bit value that uniquely identifies the
* class of service performed by the Helper -- for example, making a
* voice telephone call, sending an internet e-mail, sending an SMS
* message, sending a fax, etc. Palm defines some common Service Class
* ID's and the corresponding extra details structures in this header file.
*
* 3rd party developers:
* If none of these service class ID's match the service performed by your
* helper, you must register a unique service class ID using the Creator ID
* registry on Palm's web site (or use a creator ID that you already own).
* A group of developers may elect to support the same service class ID for
* interoperability.
*
*****************************************************************************)
unit helperserviceclass;
interface
uses palmos;
//------------------------------------------------------------------------
// Current Helper Service Class ID's
//------------------------------------------------------------------------
//
// Helpers of this Service Class make a voice telephone call.
//
// The telephone number to dial is passed in the 'pData' element of the main
// structure (HelperNotifyExecuteType)
//
// The 'pDetails' struct member is NULL for this service class.
//
const
kHelperServiceClassIDVoiceDial = Rsc('voic');
//
// Helpers of this Service Class send an Internet mail message.
//
// "To" address(es) are passed in the 'pData' element of the main structure
// (HelperNotifyExecuteType)
//
// The 'pDetails' struct member may optionally point to
// HelperServiceEMailDetailsType for this service class.
//
kHelperServiceClassIDEMail = Rsc('mail');
type
_HelperServiceEMailDetailsType = record
version: UInt16; // this is version 1
cc: PChar; // IN: carbon copy address string or NULL -- will
// be duplicated by helper if necessary;
// multiple addresses are separated by
// semicolon (ex. "john@host.com; jane@host.com")
subject: PChar; // IN: subject string or NULL -- will be duplicated
// by helper if necessary (ex. "helper API")
message: PChar; // IN: initial message body string or NULL -- will be
// duplicated by helper if necessary (ex.
// "Lets discuss the helper API tomorrow.")
end;
HelperServiceEMailDetailsType = _HelperServiceEMailDetailsType;
//
// Helpers of this Service Class send an SMS message.
//
// SMS mailbox number is passed in the 'pData' element of the main structure
// (HelperNotifyExecuteType).
//
// The 'pDetails' struct member may optionally point to
// HelperServiceSMSDetailsType for this service class.
//
const
kHelperServiceClassIDSMS = Rsc('sms_');
type
_HelperServiceSMSDetailsType = record
version: UInt16; // this is version 1
message: PChar; // IN: initial message body string or NULL -- will be
// duplicated by helper if necessary (ex.
// "Lets discuss the helper API tomorrow.")
end;
HelperServiceSMSDetailsType = _HelperServiceSMSDetailsType;
//
// Helpers of this Service Class send a fax.
//
// The fax number is passed in the 'pData' element of the main structure
// (HelperNotifyExecuteType).
//
// The 'pDetails' struct member is NULL for this service class.
//
const
kHelperServiceClassIDFax = Rsc('fax_');
implementation
end.
|