Reply to Re: Publishing the DinkC Reference
If you don't have an account, just leave the password field blank.
Hmm, perhaps so
It means the parameters are strings with max-length 49 so "mapname.dat" would be ok but something with 80 characters length wouldn't. I dunno, it's just the way many functions/methods are mentioned in many library-overviews.
You could write it like:
void load_map(filename "map.dat" (max-length 49), filename "dink.dat" (max-length 49));
but that's not as efficient as the current one..

You could write it like:
void load_map(filename "map.dat" (max-length 49), filename "dink.dat" (max-length 49));
but that's not as efficient as the current one..