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
f5a4c16bbc23afd22b3d6f4c529e3937873561e1...3fa6bebb901a793fe6d01ee8434c70d865ca4a45
Commits (1)
DLL-export is_valid_XXXnum() functions, for web server use
· 3fa6bebb
Rob Swindell
authored
Mar 24, 2022
Fixes recently broken Win32 build
3fa6bebb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
src/sbbs3/scfglib.h
src/sbbs3/scfglib.h
+5
-4
No files found.
src/sbbs3/scfglib.h
View file @
3fa6bebb
...
...
@@ -23,6 +23,7 @@
#define _SCFGLIB_H
#include "scfgdefs.h"
/* scfg_t */
#include "dllexport.h"
#define get_int(var,stream) { if(!fread(&var,1,sizeof(var),stream)) \
memset(&var,0,sizeof(var)); \
...
...
@@ -66,10 +67,10 @@ int getlibnum(scfg_t*, const char* code);
int
getsubnum
(
scfg_t
*
,
const
char
*
code
);
int
getgrpnum
(
scfg_t
*
,
const
char
*
code
);
BOOL
is_valid_dirnum
(
scfg_t
*
,
int
);
BOOL
is_valid_libnum
(
scfg_t
*
,
int
);
BOOL
is_valid_subnum
(
scfg_t
*
,
int
);
BOOL
is_valid_grpnum
(
scfg_t
*
,
int
);
DLLEXPORT
BOOL
is_valid_dirnum
(
scfg_t
*
,
int
);
DLLEXPORT
BOOL
is_valid_libnum
(
scfg_t
*
,
int
);
DLLEXPORT
BOOL
is_valid_subnum
(
scfg_t
*
,
int
);
DLLEXPORT
BOOL
is_valid_grpnum
(
scfg_t
*
,
int
);
faddr_t
*
nearest_sysfaddr
(
scfg_t
*
,
faddr_t
*
);
...
...