
a wsadata structure has a fixed length, 398 bytes, to be exact
if i would define it as:
Structure wsadata
wversion.w
whighversion.w
description.s
systemstatus.s
imaxsockets.b
imaxudpfg.b
vendorinfo.l
Endstructure
then i would have no control over the length of the structure, unless i would fill the strings with a number of bytes... of, are these string elements of the structure actually pointers to the strings? but why are they then defined with a specific length in the api?
when i look at one of the samples, it conflicts with the help doc, and i see the following kind of statement:
Structure xyz
abc.s[12]
Endstructure
what does the [12] mean?
i'm totally lost now, some help would be seriously appreciated! gonna hit the sheets now my brain has blown a fuse... thanks in advance...





