| 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) { |
| 5133 | vContextPtr->SetFileStyle(vFlags, vCriteria, ImVec4(vR, vG, vB, vA), vIcon, vFont); |
| 5134 | } |
| 5135 | } |
| 5136 | |
| 5137 | IGFD_C_API bool IGFD_GetFileStyle(ImGuiFileDialog* vContextPtr, IGFD_FileStyleFlags vFlags, const char* vCriteria, ImVec4* vOutColor, char** vOutIconText, ImFont** vOutFont) { |
| 5138 | if (vContextPtr != nullptr) { |
nothing calls this directly
no test coverage detected