| 5245 | |
| 5246 | #ifdef USE_THUMBNAILS |
| 5247 | IGFD_C_API void SetCreateThumbnailCallback(ImGuiFileDialog* vContextPtr, const IGFD_CreateThumbnailFun vCreateThumbnailFun) { |
| 5248 | if (vContextPtr != nullptr) { |
| 5249 | vContextPtr->SetCreateThumbnailCallback(vCreateThumbnailFun); |
| 5250 | } |
| 5251 | } |
| 5252 | |
| 5253 | IGFD_C_API void SetDestroyThumbnailCallback(ImGuiFileDialog* vContextPtr, const IGFD_DestroyThumbnailFun vDestroyThumbnailFun) { |
| 5254 | if (vContextPtr != nullptr) { |
nothing calls this directly
no test coverage detected