Quote:
Originally Posted by Mich
I took the changes posted here and made a small tweak. Instead of replacing all the AssertNoErrors in the code, I changed the macro:
#define AssertNoError(inMessage, inHandler) \
if(result != noErr) \
{ \
printf("%s: %d\n", inMessage, (int)result); \
}
Compiling fine and dandy now!
|
Thanks for sharing this. HUGE help.