Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Main
Synchronet
Compare Revisions
1124f51a2dc2baaaeaee31719f10eacf2db3c6e0...12e02add68d3cc3a547158dd6bc9bfd483230512
Commits (1)
Consitfy showbuf too
· 12e02add
Deucе
authored
Feb 10, 2022
12e02add
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
src/uifc/uifc.h
src/uifc/uifc.h
+1
-1
src/uifc/uifc32.c
src/uifc/uifc32.c
+1
-1
No files found.
src/uifc/uifc.h
View file @
12e02add
...
...
@@ -481,7 +481,7 @@ typedef struct {
/* Shows a scrollable text buffer - optionally parsing "help markup codes" */
/****************************************************************************/
void
(
*
showbuf
)(
int
mode
,
int
left
,
int
top
,
int
width
,
int
height
,
char
*
title
,
char
*
hbuf
,
int
*
curp
,
int
*
barp
);
,
const
char
*
title
,
char
*
hbuf
,
int
*
curp
,
int
*
barp
);
/****************************************************************************/
/* Updates time in upper left corner of screen with current time in ASCII/ */
...
...
src/uifc/uifc32.c
View file @
12e02add
...
...
@@ -87,7 +87,7 @@ static BOOL confirm(char *fmt, ...);
static
BOOL
deny
(
char
*
fmt
,
...);
static
void
upop
(
const
char
*
str
);
static
void
sethelp
(
int
line
,
char
*
file
);
static
void
showbuf
(
int
mode
,
int
left
,
int
top
,
int
width
,
int
height
,
char
*
title
static
void
showbuf
(
int
mode
,
int
left
,
int
top
,
int
width
,
int
height
,
const
char
*
title
,
char
*
hbuf
,
int
*
curp
,
int
*
barp
);
/* Dynamic menu support */
...
...