Commit 22213f20d1ea2917c8ad9fd0c2619d630461a5ae
1 parent
c1df1fe6
Exists in
master
and in
3 other branches
Exporting the new popup method.
Showing
1 changed file
with
4 additions
and
0 deletions
Show diff stats
src/core/popup.c
| ... | ... | @@ -41,6 +41,10 @@ |
| 41 | 41 | |
| 42 | 42 | /*--[ Implement ]------------------------------------------------------------------------------------*/ |
| 43 | 43 | |
| 44 | +LIB3270_EXPORT int lib3270_popup_show(H3270 *hSession, const LIB3270_POPUP *popup, unsigned char wait) { | |
| 45 | + return hSession->cbk.popup_show(hSession,popup,wait); | |
| 46 | +} | |
| 47 | + | |
| 44 | 48 | /// @brief Pop up an error dialog. |
| 45 | 49 | void popup_an_error(H3270 *hSession, const char *fmt, ...) |
| 46 | 50 | { | ... | ... |