engiSetComment
Syntax
// // Strong typing definition // void engiSetComment( SdaiInstance instance, const char * comment ); static inline void engiSetComment( SdaiInstance instance, char * comment ) { return engiSetComment( instance, (const char*) comment ); } // // Weak typing definition // void __declspec(dllexport) __stdcall engiSetComment( int_t instance, const char * comment ); static inline void engiSetComment( int_t instance, char * comment ) { return engiSetComment( instance, (const char*) comment ); }