getProjectUnitConversionFactorW

...

Syntax

//
//   Strong typing definition
//
double          getProjectUnitConversionFactorW(
                        SdaiModel               model,
                        const wchar_t           * unitType,
                        const wchar_t           ** unitPrefix,
                        const wchar_t           ** unitName,
                        const wchar_t           ** SIUnitName
                    );

static  inline  double  getProjectUnitConversionFactorW(
                                SdaiModel               model,
                                wchar_t                 * unitType,
                                wchar_t                 ** unitPrefix,
                                wchar_t                 ** unitName,
                                wchar_t                 ** SIUnitName
                            )
{
    return  getProjectUnitConversionFactorW(
                    model,
                    (const wchar_t*) unitType,
                    (const wchar_t**) unitPrefix,
                    (const wchar_t**) unitName,
                    (const wchar_t**) SIUnitName
                );
}


//
//   Weak typing definition
//
double  __declspec(dllexport) __stdcall getProjectUnitConversionFactorW(
                                                int_t                   model,
                                                const wchar_t           * unitType,
                                                const wchar_t           ** unitPrefix,
                                                const wchar_t           ** unitName,
                                                const wchar_t           ** SIUnitName
                                            );

static  inline  double  getProjectUnitConversionFactorW(
                                int_t                   model,
                                wchar_t                 * unitType,
                                wchar_t                 ** unitPrefix,
                                wchar_t                 ** unitName,
                                wchar_t                 ** SIUnitName
                            )
{
    return  getProjectUnitConversionFactorW(
                    model,
                    (const wchar_t*) unitType,
                    (const wchar_t**) unitPrefix,
                    (const wchar_t**) unitName,
                    (const wchar_t**) SIUnitName
                );
}
    

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 unitType

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

Property unitPrefix

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

Property unitName

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

Property SIUnitName

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