C++ SDK compilation in CodeWarrior9 HELP!
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 28/11/2003 at 11:29, xxxxxxxx wrote:
User Information:
Cinema 4D Version: 8.100
Platform: Mac OSX ;
Language(s) : C++ ;---------
hi
i tried to compile the SDK-plugin.
but i get an "illegal character constant" error in the OperatingSystem.h-file at lines 245, 246, 247, 248, 249, 250, 251, 280, 282, 283.what is wrong ?
yesterday i down loaded the sdk from this site (demo). could it be that it is not backward compatible -
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 08/12/2003 at 05:49, xxxxxxxx wrote:
CW 9 doesn't like three-letter constants, e.g. 'abc'. You'll have to add the \0 manuall, e.g. '\0abc'. Fixed in 8.5.
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 09/12/2003 at 03:59, xxxxxxxx wrote:
thanks
now that is solved...
but there is one more :
i get this error to:
'exception specification list mismatch
c4d_memory.h line 30 void operator delete(void *p);'
also on line 31
'exception specification list mismatch
c4d_memory.cpp line 52 {'
also on line 61these are probably some newbie questions ...
i'm new to codewarrior (i always use xCode)luinithil
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 12/05/2004 at 09:57, xxxxxxxx wrote:
Hi,
I hope it isn't too lateUse void operator delete(void *p) throw(); instead of void operator delete(void *p);
cu
qwaak