From 2545119112875a098d8d807c84b7f7a3e1bcd338 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 8 Dec 2021 17:12:37 +1100 Subject: Cleanup: move public doc-strings into headers for 'blendthumb' Ref T92709 --- source/blender/blendthumb/src/blendthumb.hh | 4 ++++ source/blender/blendthumb/src/blendthumb_extract.cc | 4 ---- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/source/blender/blendthumb/src/blendthumb.hh b/source/blender/blendthumb/src/blendthumb.hh index c029a1766d6..0bcb160519e 100644 --- a/source/blender/blendthumb/src/blendthumb.hh +++ b/source/blender/blendthumb/src/blendthumb.hh @@ -53,6 +53,10 @@ enum eThumbStatus { std::optional> 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 */ diff --git a/source/blender/blendthumb/src/blendthumb_extract.cc b/source/blender/blendthumb/src/blendthumb_extract.cc index f1c5567bab5..2d14a88c904 100644 --- a/source/blender/blendthumb/src/blendthumb_extract.cc +++ b/source/blender/blendthumb/src/blendthumb_extract.cc @@ -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. */ -- cgit v1.2.3