Cleanup: move public doc-strings into headers for 'blendthumb'

Ref T92709
This commit is contained in:
Campbell Barton 2021-12-08 17:12:37 +11:00
parent d6c3ea9e7a
commit 2545119112
Notes: blender-bot 2023-02-14 04:20:36 +01:00
Referenced by issue #93854, Relocate doc-strings into public headers
Referenced by issue #92709, Code Style: documentation at declaration or definition
2 changed files with 4 additions and 4 deletions

View File

@ -53,6 +53,10 @@ enum eThumbStatus {
std::optional<blender::Vector<uint8_t>> blendthumb_create_png_data_from_thumb(
const Thumbnail *thumb);
/**
* This function extracts the thumbnail from the .blend file into thumb.
* Returns #BT_OK for success and the relevant error code otherwise.
*/
eThumbStatus blendthumb_create_thumb_from_file(struct FileReader *rawfile, Thumbnail *thumb);
/* INTEGER CODES */

View File

@ -179,10 +179,6 @@ static eThumbStatus blendthumb_extract_from_file_impl(FileReader *file,
return BT_INVALID_THUMB;
}
/**
* This function extracts the thumbnail from the .blend file into thumb.
* Returns #BT_OK for success and the relevant error code otherwise.
*/
eThumbStatus blendthumb_create_thumb_from_file(FileReader *rawfile, Thumbnail *thumb)
{
/* Read header in order to identify file type. */