GetPropertyByNameAndType
Please use the call GetPropertyByName(Ex) / GetPropertyByNameW(Ex) + GetPropertyType(Ex) instead, just rename the function name.
Syntax
// // Strong typing definition // int64_t GetPropertyByNameAndType( OwlModel model, const char * name, int64_t rdfPropertyType ); static inline int64_t GetPropertyByNameAndType( OwlModel model, char * name, int64_t rdfPropertyType ) { return GetPropertyByNameAndType( model, (const char*) name, rdfPropertyType ); } // // Weak typing definition // int64_t __declspec(dllexport) __stdcall GetPropertyByNameAndType( int64_t model, const char * name, int64_t rdfPropertyType ); static inline int64_t GetPropertyByNameAndType( int64_t model, char * name, int64_t rdfPropertyType ) { return GetPropertyByNameAndType( model, (const char*) name, rdfPropertyType ); }