diff --git a/include/assimp/importerdesc.h b/include/assimp/importerdesc.h index 2f888b5aa..5cc9ef302 100644 --- a/include/assimp/importerdesc.h +++ b/include/assimp/importerdesc.h @@ -133,6 +133,12 @@ struct aiImporterDesc const char* mFileExtensions; }; +/** \brief Returns the Importer description for a given extension. + +Will return a NULL-pointer if no assigned importer desc. was found for the given extension + \param extension [in] The extension to look for + \return A pointer showing to the ImporterDesc, \see aiImporterDesc. +*/ ASSIMP_API C_STRUCT const aiImporterDesc* aiGetImporterDesc( const char *extension ); #endif