Skip to content

Commit

Permalink
Properly export new classes and function.
Browse files Browse the repository at this point in the history
  • Loading branch information
ShawnCZek committed Mar 16, 2024
1 parent b08f293 commit a7af17a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Include/RmlUi/Core/TextInputMethodContext.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ namespace Rml {
An interface for a text input handler for IME.
*/

class TextInputMethodContext {
class RMLUICORE_API TextInputMethodContext {
public:
virtual ~TextInputMethodContext() {}

Expand Down
4 changes: 2 additions & 2 deletions Include/RmlUi/Core/TextInputMethodEditor.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class TextInputMethodContext;
An interface for an IME (Input Method Editor) system.
*/

class TextInputMethodEditor {
class RMLUICORE_API TextInputMethodEditor {
public:
virtual ~TextInputMethodEditor() {}

Expand Down Expand Up @@ -82,7 +82,7 @@ class TextInputMethodEditor {
virtual void SetCursorPosition(int cursor_pos, bool update) = 0;
};

UniquePtr<TextInputMethodEditor> CreateDefaultTextInputMethodEditor();
RMLUICORE_API UniquePtr<TextInputMethodEditor> CreateDefaultTextInputMethodEditor();

} // namespace Rml

Expand Down

0 comments on commit a7af17a

Please sign in to comment.