I don't know if some of you used the cool feature of last version but I definetly think it's very great...but, since I always think better can be done, I added the struct support
How to use this ? copy/paste from the help file you never read :
Code: Select all
add a .str file with 1 or more structure definition.
a str_Level is defined like this :
STRUCT        str_Level
       CHAR        idx
       CHAR        _pad_
       SHORT        width
       SHORT        height
       CHAR        pal
       CHAR        _pad_
       LONG        data
END
so, any structure must start by 'STRUCT' keyword followed my struct name (20char max)
then you add any element you want using 'CHAR', 'SHORT' or 'LONG' keywords followed by element name (20 char max)
it's a good use to add the 'END' keyword but it's optionnal.
Any other keywords or strings (like // or others comments keywords) are ignored.
oh! And now, you can resize the window
see you next year with a tutorial on Eclipse for Genny dev and a new tool (for newbies, since you all have your own tools)
ps: for the _pad_ stuff, think about M68K and odd/even word access
