xxxxGetAttrTypeBN

This call is deprecated, please use calls engiGetAttrTypeBN(..) instead. Technically it will transform into the following call

    xxxxGetAttrType(
            instance,
            sdaiGetAttrDefinition(
                    sdaiGetInstanceType(
                            instance
                        ),
                    attributeName
                ),
            attributeType
        );

Syntax

//
//   Strong typing definition
//
int_t           xxxxGetAttrTypeBN(
                        SdaiInstance            instance,
                        const char              * attributeName,
                        const char              ** attributeType
                    );

static  inline  int_t   xxxxGetAttrTypeBN(
                                SdaiInstance            instance,
                                char                    * attributeName,
                                char                    ** attributeType
                            )
{
    return  xxxxGetAttrTypeBN(
                    instance,
                    (const char*) attributeName,
                    (const char**) attributeType
                );
}


//
//   Weak typing definition
//
int_t   __declspec(dllexport) __stdcall xxxxGetAttrTypeBN(
                                                int_t                   instance,
                                                const char              * attributeName,
                                                const char              ** attributeType
                                            );

static  inline  int_t   xxxxGetAttrTypeBN(
                                int_t                   instance,
                                char                    * attributeName,
                                char                    ** attributeType
                            )
{
    return  xxxxGetAttrTypeBN(
                    instance,
                    (const char*) attributeName,
                    (const char**) attributeType
                );
}
    

Property instance

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

Property attributeName

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

Property attributeType

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