| 5121 | } |
| 5122 | |
| 5123 | IGFD_C_API void IGFD_SetFileStyle(ImGuiFileDialog* vContextPtr, IGFD_FileStyleFlags vFlags, const char* vCriteria, ImVec4 vColor, const char* vIcon, |
| 5124 | ImFont* vFont) //-V813 |
| 5125 | { |
| 5126 | if (vContextPtr != nullptr) { |
| 5127 | vContextPtr->SetFileStyle(vFlags, vCriteria, vColor, vIcon, vFont); |
| 5128 | } |
| 5129 | } |
| 5130 | |
| 5131 | IGFD_C_API void IGFD_SetFileStyle2(ImGuiFileDialog* vContextPtr, IGFD_FileStyleFlags vFlags, const char* vCriteria, float vR, float vG, float vB, float vA, const char* vIcon, ImFont* vFont) { |
| 5132 | if (vContextPtr != nullptr) { |
nothing calls this directly
no test coverage detected