xxxxOpenModelByStream

This call is deprecated, please use call engiOpenModelByStream(..) instead.

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
                );
}
    

Property repository

Size: 32 bit / 4 byte (value)
...

Property callback

Size: 32 bit / 4 byte (reference)
...

Property schemaName

Size: 32 bit / 4 byte (reference)
...