Structures
Posted: Fri May 23, 2003 3:32 pm
Hi,
Is it possible to declare a string within a structure to be a certain number of bytes long?
Is it possible to declare a string within a structure to be a certain number of bytes long?
Code: Select all
Structure your_struct
stringvar.b[15]
EndStructure
foo.your_struct
PokeS(@foo\stringvar[0], "foo")
Debug PeekS(@foo\stringvar[0])