|
From: Seth W. <bm...@pa...> - 2005-05-18 17:01:16
|
On May 18, 2005, at 9:29 AM, James W. Walker wrote:
> I don't usually use XCode, but I made a new project and added the
> debug Quesa framework from 1.7. In main.c, I added
>
> #define QUESA_OS_MACINTOSH 1
> #include <Quesa/Quesa.h>
> #include <Quesa/QuesaErrors.h>
>
> and in the main function,
>
> if (Q3Error_Get(nil) != kQ3ErrorNone)
> {
>
> }
>
> It compiles with no warnings or errors. Are you defining
> QUESA_OS_MACINTOSH or QUESA_OS_COCOA? When using CodeWarrior,
> Quesa.h will automatically turn on QUESA_OS_MACINTOSH, but it looks
> like XCode users must do it themselves.
Yup. It's in my prefix header. It must have something to do with a
change between the two versions. Could the change to C++ have changed
this?
-- Seth
|