From 22213f20d1ea2917c8ad9fd0c2619d630461a5ae Mon Sep 17 00:00:00 2001 From: Perry Werneck Date: Sat, 25 Jul 2020 10:45:14 -0300 Subject: [PATCH] Exporting the new popup method. --- src/core/popup.c | 4 ++++ 1 file changed, 4 insertions(+), 0 deletions(-) diff --git a/src/core/popup.c b/src/core/popup.c index 073e9bb..2ec065a 100644 --- a/src/core/popup.c +++ b/src/core/popup.c @@ -41,6 +41,10 @@ /*--[ Implement ]------------------------------------------------------------------------------------*/ +LIB3270_EXPORT int lib3270_popup_show(H3270 *hSession, const LIB3270_POPUP *popup, unsigned char wait) { + return hSession->cbk.popup_show(hSession,popup,wait); +} + /// @brief Pop up an error dialog. void popup_an_error(H3270 *hSession, const char *fmt, ...) { -- libgit2 0.21.2