1
0
Fork 0

Add stubs for inputwin to fix autotests

This commit is contained in:
John Hernandez 2023-12-28 18:18:40 +01:00
parent f322639668
commit 080b0f825a
No known key found for this signature in database
GPG Key ID: 00B2D64859378A94
3 changed files with 6 additions and 0 deletions

View File

@ -130,6 +130,7 @@ unittest_sources = \
tests/unittests/xmpp/stub_xmpp.c \
tests/unittests/xmpp/stub_message.c \
tests/unittests/ui/stub_ui.c tests/unittests/ui/stub_ui.h \
tests/unittests/ui/stub_inputwin.c tests/unittests/ui/stub_inputwin.h \
tests/unittests/ui/stub_vcardwin.c \
tests/unittests/log/stub_log.c \
tests/unittests/chatlog/stub_chatlog.c \

View File

@ -0,0 +1,4 @@
void
inp_add_watch(void)
{
}

View File

@ -0,0 +1 @@
void inp_add_watch(void);