From 39bda5ea09ec94d31590cc7a3d515a30a1f6d9a5 Mon Sep 17 00:00:00 2001 From: ocornut Date: Sat, 14 May 2016 10:22:25 +0200 Subject: [PATCH] Fixed a IMGUI_API->inline case (#657, #349) --- imgui.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imgui.h b/imgui.h index 38e36762..64488503 100644 --- a/imgui.h +++ b/imgui.h @@ -791,7 +791,7 @@ struct ImGuiIO // Functions IMGUI_API void AddInputCharacter(ImWchar c); // Helper to add a new character into InputCharacters[] IMGUI_API void AddInputCharactersUTF8(const char* utf8_chars); // Helper to add new characters into InputCharacters[] from an UTF-8 string - IMGUI_API void ClearInputCharacters() { InputCharacters[0] = 0; } // Helper to clear the text input buffer + inline void ClearInputCharacters() { InputCharacters[0] = 0; } // Helper to clear the text input buffer //------------------------------------------------------------------ // Output - Retrieve after calling NewFrame(), you can use them to discard inputs or hide them from the rest of your application