Hi, I'm attempting to use the #define directive to change all of "ulong" to "unsigned long". Here is an example:
#define ulong unsigned long
ulong idCounter = 0;
Sadly, I think it ends up replacing ulong with "unsigned", rather than "unsigned long". I tried "#define ulong (unsigned long)", but that didn't worth either.