ソースを参照

add missing documentation.

Signed-off-by: Kim Kulling <[email protected]>
Kim Kulling 10 年 前
コミット
951431db94
1 ファイル変更6 行追加0 行削除
  1. 6 0
      include/assimp/importerdesc.h

+ 6 - 0
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