Originally Posted By: EvilSOB
Because the manual, in the 'Variables' entry, in the variable-types table, it states that int & long use 4 bytes, not 8!

You're right about this, my bad. Sorry, too much java programming. blush

For the rest. I am pretty sure about this. But my c/c++ expertise is limited. Maybe someone else with more experience can jump in?

Basically you can test the size of any type with the following code snippet:

Code:
#include <acknex.h>

int main()
{
	printf("%d",(long)sizeof(long*));
}




Always learn from history, to be sure you make the same mistakes again...