xxxxGetAttrType

...

Syntax

//
//   Strong typing definition
//
int_t           xxxxGetAttrType(
                        SdaiInstance            instance,
                        const SdaiAttr          attribute,
                        const char              ** attributeType
                    );

static  inline  int_t   xxxxGetAttrType(
                                SdaiInstance            instance,
                                const SdaiAttr          attribute,
                                char                    ** attributeType
                            )
{
    return  xxxxGetAttrType(
                    instance,
                    attribute,
                    (const char**) attributeType
                );
}


//
//   Weak typing definition
//
int_t   __declspec(dllexport) __stdcall xxxxGetAttrType(
                                                int_t                   instance,
                                                const void              * attribute,
                                                const char              ** attributeType
                                            );

static  inline  int_t   xxxxGetAttrType(
                                int_t                   instance,
                                const void              * attribute,
                                char                    ** attributeType
                            )
{
    return  xxxxGetAttrType(
                    instance,
                    attribute,
                    (const char**) attributeType
                );
}
    

Property instance

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

Property attribute

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

Property attributeType

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