engiGetAttrIndexBN

...

Syntax

//
//   Strong typing definition
//
int_t           engiGetAttrIndexBN(
                        SdaiEntity              entity,
                        SdaiString              attributeName
                    );

static  inline  int_t   engiGetAttrIndexBN(
                                SdaiEntity              entity,
                                char                    * attributeName
                            )
{
    return  engiGetAttrIndexBN(
                    entity,
                    (SdaiString) attributeName
                );
}


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

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

Property entity

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

Property attributeName

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