I remember seeing this style at one point (where a list of parameter names is followed by a secondary list having the actual types), but can't remember what it's called or when it's supposed to be valid (I'm building in Windows, at the moment):
uLong ZEXPORT adler32_combine(adler1, adler2, len2)
uLong adler1;
uLong adler2;
z_off_t len2;
{
return adler32_combine_(adler1, adler2, len2);
}
Can someone remind me?
Thanks, in advance.