K
Kate
is there a way of moving the contents of a data record
into another data record with same length but a different
structure?
Like having a structures like:
type xx
v1 as byte
v2 as byte
end type
type yy
v1 as integer
end type
dim x1 as xx
dim y1 as yy
yy.v1 = 1000
x1 = y1
Many years ago I programmed in PL/1.... here you could
read the same data area through different record
structures. I am looking for the same facility.
into another data record with same length but a different
structure?
Like having a structures like:
type xx
v1 as byte
v2 as byte
end type
type yy
v1 as integer
end type
dim x1 as xx
dim y1 as yy
yy.v1 = 1000
x1 = y1
Many years ago I programmed in PL/1.... here you could
read the same data area through different record
structures. I am looking for the same facility.