xxxxOpenModelByStream
Syntax
// // Strong typing definition // int_t xxxxOpenModelByStream( int_t repository, const void * callback, SdaiString schemaName ); static inline int_t xxxxOpenModelByStream( int_t repository, const void * callback, char * schemaName ) { return xxxxOpenModelByStream( repository, callback, (SdaiString) schemaName ); } // // Weak typing definition // int_t __declspec(dllexport) __stdcall xxxxOpenModelByStream( int_t repository, const void * callback, const char * schemaName ); static inline int_t xxxxOpenModelByStream( int_t repository, const void * callback, char * schemaName ) { return xxxxOpenModelByStream( repository, callback, (const SdaiString) schemaName ); }