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