diff options
author | Michael Vetter <jubalh@iodoru.org> | 2021-10-22 12:40:34 +0200 |
---|---|---|
committer | Michael Vetter <jubalh@iodoru.org> | 2021-10-22 12:40:34 +0200 |
commit | ab5ee11c669d62ab8db75db338daab44a93563f0 (patch) | |
tree | df64182bc20a16615504da06121234c26151ddb3 /tests/unittests | |
parent | 59063aa3b43cd973ab328b406f1ab40dcf09b41a (diff) | |
download | profani-tty-ab5ee11c669d62ab8db75db338daab44a93563f0.tar.gz |
tests: Add win_get_last_sent_messag() stub
Diffstat (limited to 'tests/unittests')
-rw-r--r-- | tests/unittests/ui/stub_ui.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/unittests/ui/stub_ui.c b/tests/unittests/ui/stub_ui.c index deff698b..4557ac3a 100644 --- a/tests/unittests/ui/stub_ui.c +++ b/tests/unittests/ui/stub_ui.c @@ -1307,6 +1307,11 @@ win_get_title(ProfWin* window) { return NULL; } +char* +win_get_last_sent_message(ProfWin* window) +{ + return NULL; +} void win_show_occupant(ProfWin* window, Occupant* occupant) { |