Copyright (c) Hyperion Entertainment and contributors.
SDK FAQ
Revision as of 19:21, 8 October 2013 by Steven Solie (talk | contribs)
What are all these new DOS errors I'm seeing?
If you experiencing issues with DOS constants it is likely your code has not been updated to the newer definitions. To access the obsolete definitions add the following to your source file:
#include <dos/obsolete.h>
If you see warnings like the following:
Prefs.cpp:97: error: cannot convert 'Image*' to 'Object*' in argument passing
your code likely needs updating to use the proper BOOPSI types.
In BOOPSI, objects can be passed around as a pointer to type Object. When Intuition functions expect a specific type they will require it to be passed as a struct Gadget * or struct Image * in arguments. They are still BOOPSI objects but they need to be type casted. This safety mechanism is there to prevent programmers from accidentally passing incorrect BOOPSI object pointers.