THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 26/04/2008 at 09:52, xxxxxxxx wrote:
User Information:
Cinema 4D Version: 10.506
Platform: Windows ; Mac OSX ;
Language(s) : C++ ;
---------
Hi,
as learned, the CTrack::GetCurve() function has got a new parameter bCreate, that makes calls from a R10-compiled plugin version crash on Windows (no problems on MacOSX).
c4d_canimation.h in 10.5 resources defines
CCurve *GetCurve(CCurveType type=CC_CURVE,Bool bCreate=TRUE) { return CaCall(GetCurve)(type,bCreate); }
in 10.x it is defined as
CCurve *GetCurve(CCurveType type=CC_CURVE) { return CaCall(GetCurve)(type); }
Any ideas for a workaround, so that it can be compiled with R10? Thanks.