engiGetAttrDerivedBN
engiGetAttrDerived(
entity,
sdaiGetAttrDefinition(
entity,
attributeName
)
);
Syntax
// // Strong typing definition // int_t engiGetAttrDerivedBN( SdaiEntity entity, const char * attributeName ); static inline int_t engiGetAttrDerivedBN( SdaiEntity entity, char * attributeName ) { return engiGetAttrDerivedBN( entity, (const char*) attributeName ); } // // Weak typing definition // int_t __declspec(dllexport) __stdcall engiGetAttrDerivedBN( int_t entity, const char * attributeName ); static inline int_t engiGetAttrDerivedBN( int_t entity, char * attributeName ) { return engiGetAttrDerivedBN( entity, (const char*) attributeName ); }