CreateOwlModelMultiThreadingWrapper

...

Syntax

//
//   Strong typing definition
//
MultiThreadOwlModelWrapper  CreateOwlModelMultiThreadingWrapper(
                                    SdaiModel               model,
                                    OwlModel                owlModel,
                                    int_t                   threadIndex
                                );

static  inline  MultiThreadOwlModelWrapper  CreateOwlModelMultiThreadingWrapper(
                                                    OwlModel                owlModel,
                                                    int_t                   threadIndex
                                                )
{
    return  CreateOwlModelMultiThreadingWrapper(
                    0,                                  //    model
                    owlModel,
                    threadIndex
                );
}


//
//   Weak typing definition
//
int_t   __declspec(dllexport) __stdcall CreateOwlModelMultiThreadingWrapper(
                                                int_t                   model,
                                                int64_t                 owlModel,
                                                int_t                   threadIndex
                                            );

static  inline  int_t   CreateOwlModelMultiThreadingWrapper(
                                int64_t                 owlModel,
                                int_t                   threadIndex
                            )
{
    return  CreateOwlModelMultiThreadingWrapper(
                    0,                                  //    model
                    owlModel,
                    threadIndex
                );
}
    

Property model

Size: 64 bit / 8 byte (value)
The handle to the model. The model handle is static during its existance. Several models can be opened simultaniously within one session. Different models are always independent, threads are allowed to be running on different models simultaniously.

Property owlModel

Size: 64 bit / 8 byte (value)
...

Property threadIndex

Size: 64 bit / 8 byte (value)
???.