sdaiGetAttrBNUnicode

...

Syntax

//
//   Strong typing definition
//
int_t           sdaiGetAttrBNUnicode(
                        SdaiInstance            instance,
                        const char              * attributeName,
                        unsigned char           * buffer,
                        int_t                   bufferLength
                    );

static  inline  int_t   sdaiGetAttrBNUnicode(
                                SdaiInstance            instance,
                                char                    * attributeName,
                                unsigned char           * buffer,
                                int_t                   bufferLength
                            )
{
    return  sdaiGetAttrBNUnicode(
                    instance,
                    (const char*) attributeName,
                    buffer,
                    bufferLength
                );
}


//
//   Weak typing definition
//
int_t   __declspec(dllexport) __stdcall sdaiGetAttrBNUnicode(
                                                int_t                   instance,
                                                const char              * attributeName,
                                                unsigned char           * buffer,
                                                int_t                   bufferLength
                                            );

static  inline  int_t   sdaiGetAttrBNUnicode(
                                int_t                   instance,
                                char                    * attributeName,
                                unsigned char           * buffer,
                                int_t                   bufferLength
                            )
{
    return  sdaiGetAttrBNUnicode(
                    instance,
                    (const char*) attributeName,
                    buffer,
                    bufferLength
                );
}
    

Property instance

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

Property attributeName

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

Property buffer

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

Property bufferLength

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