THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 19/03/2004 at 06:18, xxxxxxxx wrote:
User Information:
Cinema 4D Version: 8.207
Platform: Windows ;
Language(s) : C++ ;
---------
The [] operator of String returns a PChar....what the hell ich a PChar? Is is not documented in the cinema sdk, and also if I try to do something like this:
string test("asdf");
PChar s = test[1];
if fails, because PChar is not a known type....
At least the [] operator seems to return a valid unicode value, but what about that PChar??? It should be something like an unsigned 32Bit value, right? So would it be ok if I use ULONG instead of PChar? And why cant I use PChar? Even if I look in c4d_string.h, PChar occures...so somehow, somewhere it should be defined?