forked from IBM/iService-ibmi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathT_PgmILE.json
More file actions
executable file
·58 lines (58 loc) · 1.26 KB
/
T_PgmILE.json
File metadata and controls
executable file
·58 lines (58 loc) · 1.26 KB
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
[
{"testSrc": "test/TESTPGM.c"},
{
"pgm": {
"name": "TESTPGM",
"lib": "ISERVICE",
"parm": [
{
"io": "both",
"var": "string",
"type": "char(10)",
"value": "value1"
},
{
"io": "both",
"var": "int",
"type": "int(4)",
"value": 4
},
{
"io": "both",
"var": "usinged long long",
"type": "uint(8)",
"value": 8
},
{
"io": "both",
"var": "float",
"type": "float(3)",
"value": 333.222
},
{
"io": "both",
"var": "double",
"type": "double(5)",
"value": 4444.333444
},
{
"io": "both",
"var": "hexidecimal",
"type": "char(12)",
"hex": "on",
"value": "010203040506"
},
{
"io": "both",
"var": "ds",
"type": "ds",
"value": [
{ "var": "ent1", "type": "int(2)", "value": 3 },
{ "var": "ent2", "type": "char(20)", "value": "ent2_value" }
]
}
],
"return":{"value":-10000}
}
}
]