Fixed a IMGUI_API->inline case (#657, #349)

This commit is contained in:
ocornut 2016-05-14 10:22:25 +02:00
parent e79d2828c4
commit 39bda5ea09
1 changed files with 1 additions and 1 deletions

View File

@ -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