.Character .Ascii structures etc
Posted: Fri Nov 12, 2021 9:29 am
Any reason why these are NOT declared as:
So we can index into the structure?
Please change; it seems to be backwards compatible, right?
Code: Select all
EnableExplicit
Structure pcharacter
c.c[0]
EndStructure
Define s.s = "Test"
Define *pb.pcharacter
*pb = @s
Debug Chr(*pb\c)
Debug Chr(*pb\c[3])
Please change; it seems to be backwards compatible, right?