engiGetAttrTypeBN

Combines sdaiGetAttrDefinition and engiGetAttrType. Technically engiGetAttrTypeBN will transform into the following call

    engiGetAttrType(
            sdaiGetAttrDefinition(
                    entity,
                    attributeName
                )
        );

Syntax

//
//   Strong typing definition
//
SdaiPrimitiveType   engiGetAttrTypeBN(
                            SdaiEntity              entity,
                            const char              * attributeName
                        );

static  inline  SdaiPrimitiveType   engiGetAttrTypeBN(
                                            SdaiEntity              entity,
                                            char                    * attributeName
                                        )
{
    return  engiGetAttrTypeBN(
                    entity,
                    (const char*) attributeName
                );
}


//
//   Weak typing definition
//
int_t   __declspec(dllexport) __stdcall engiGetAttrTypeBN(
                                                int_t                   entity,
                                                const char              * attributeName
                                            );

static  inline  int_t   engiGetAttrTypeBN(
                                int_t                   entity,
                                char                    * attributeName
                            )
{
    return  engiGetAttrTypeBN(
                    entity,
                    (const char*) attributeName
                );
}
    

Property entity

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

Property attributeName

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