I'd like to use the GET statement with something other than an
explicit array for its destination buffer. What would be nice
is to be able to define a TYPE such as:
TYPE ScreenBlockRec
Hsize as INTEGER
Vsize as INTEGER
DAT(143) as INTEGER
END TYPE
But it seems that the GET statement does not permit anything
other than explicit arrays as an argument. It also doesn't
seem to permit pointers to arrays, UNIONs, or structure
element references. Has anyone wrestled with this bear before?
--Greg
explicit array for its destination buffer. What would be nice
is to be able to define a TYPE such as:
TYPE ScreenBlockRec
Hsize as INTEGER
Vsize as INTEGER
DAT(143) as INTEGER
END TYPE
But it seems that the GET statement does not permit anything
other than explicit arrays as an argument. It also doesn't
seem to permit pointers to arrays, UNIONs, or structure
element references. Has anyone wrestled with this bear before?
--Greg
Comment