-
Notifications
You must be signed in to change notification settings - Fork 2
/
idlfile.txt
89 lines (79 loc) · 2.27 KB
/
idlfile.txt
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
/*********************************************************************
/** This is an example IDL file that you can process using the
/** IDL2WSDL rexx procedure.
/*********************************************************************
library 'TalkingClock' is
program 'getTime' is
define data parameter
1 result (A32) Out
end-define
program 'Sprechen' is
define data parameter
1 result (AV80) Out
end-define
program 'Speak' is
define data parameter
1 result (AV80) Out
end-define
library 'Security' is
program 'changePassword' is
define data parameter
1 userid (A8) In
1 password (A8) In
1 newPassword (A8) In
1 result ('SecurityContext') Out
end-define
program 'verify' is /*Authenticate a userid
define data parameter
1 userid (A8) In
1 password (A8) In
1 result ('SecurityContext') Out
end-define
program 'authorise' is /*Authorise access to a resource
define data parameter
1 userid (A8) In
1 password (A8) In
1 resource (A44) In
1 result ('SecurityContext') Out
end-define
/*The result of a Security operation is a collection of return and reason codes
struct 'SecurityContext' is
define data parameter
1 userid (A8)
1 success (L)
1 returnCode (B4)
1 reasonCode (B4)
1 reason (AV80)
end-define
/*Preceding comment lines
library 'Gamut':'Gamut Alias' is
/*Same line comment
struct 'aStructure' is
define data parameter
1 aVar2 (D)
1 aVar3 (A1)
1 aVar4 (BV)
1 aVar5 (F4)
1 aVar6 (I4)
1 aVar7 (L)
1 aVar8 (N8.3)
1 aVar9 (NU8.3)
1 aVar10 (P8.3)
1 aVar11 (PU8.3)
1 aVar12 (T)
1 aGroup
2 aVar1 (AV80/1,2,3) aligned
2 aGroup2
3 aVar3 (AV)
3 aVar2 (AV)
end-define
/*Preceding comment lines
program 'Operation':'Operation Alias' is /*Same line comment
define data parameter
1 aParm1 (A1) In
1 aParm2 (AV) Out
1 aStructureRef ('aStructure') In
1 aStructureRef2 ('aStructure') Out
1 aStructureRef3 ('aStructure') In Out
end-define
** End of file