xxxxGetAttrTypeBN
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 ); }