C2GUICOBOL
Programmer
Hello,
can you please help me with this problem. I am trying to
combine two tables (structs) into one single table
(struct), so I can pass that incorporated table as a single
parameter when calling an API?
I am using micro focus NE 3.0 with windows 2k pro.
case in point:
01 Table1.
05 item1 pic xxx.
05 item2 pic xxx.
05 item3 pic xxx.
01 Table2.
05 sub1 pic xxx.
05 sub2 pic xxx.
05 sub3 pic xxx.
table1 and table2 must be passed as a single table by using
the "By Reference" clause.
call staticAPI "windowsAPI" using
by reference Table1
returning return-code
end-call.
thanks a bunch for the help.
can you please help me with this problem. I am trying to
combine two tables (structs) into one single table
(struct), so I can pass that incorporated table as a single
parameter when calling an API?
I am using micro focus NE 3.0 with windows 2k pro.
case in point:
01 Table1.
05 item1 pic xxx.
05 item2 pic xxx.
05 item3 pic xxx.
01 Table2.
05 sub1 pic xxx.
05 sub2 pic xxx.
05 sub3 pic xxx.
table1 and table2 must be passed as a single table by using
the "By Reference" clause.
call staticAPI "windowsAPI" using
by reference Table1
returning return-code
end-call.
thanks a bunch for the help.