From 8c4b5d741164ea2266ac79aa09c5c292a3ebc213 Mon Sep 17 00:00:00 2001 From: "Rob Swindell (on Debian Linux)" <rob@synchro.net> Date: Tue, 14 Feb 2023 23:01:20 -0800 Subject: [PATCH] Create a (very simple) showbuf() implementation for the stdio uifc --- src/uifc/uifcx.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/uifc/uifcx.c b/src/uifc/uifcx.c index 31eff87814..900b5d5abe 100644 --- a/src/uifc/uifcx.c +++ b/src/uifc/uifcx.c @@ -81,6 +81,12 @@ static int uprintf(int x, int y, unsigned attr, char *fmat, ...) return(i); } +static void showbuf(uifc_winmode_t, int left, int top, int width, int height + ,const char *title, const char *hbuf, int *curp, int *barp) +{ + puts(title); + puts(hbuf); +} /****************************************************************************/ /* Initialization function, see uifc.h for details. */ @@ -110,7 +116,7 @@ int uifcinix(uifcapi_t* uifcapi) api->input=uinput; api->sethelp=sethelp; api->showhelp=help; - api->showbuf=NULL; + api->showbuf=showbuf; api->timedisplay=NULL; api->printf = uprintf; -- GitLab