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
9166b520ca68317216e2b5b9f321eb492f9c13d3...6f8041a2a4a59a93d48604de761bff6e8eefac71
Commits (1)
Move all exported variables into extern "C" block
· 6f8041a2
Deucе
authored
Feb 23, 2022
6f8041a2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
11 deletions
+9
-11
src/conio/ciolib.h
src/conio/ciolib.h
+9
-11
No files found.
src/conio/ciolib.h
View file @
6f8041a2
...
...
@@ -241,10 +241,6 @@ struct text_info {
unsigned
char
cury
;
/* y-coordinate in current window */
};
CIOLIBEXPORTVAR
struct
text_info
cio_textinfo
;
CIOLIBEXPORTVAR
uint32_t
ciolib_fg
;
CIOLIBEXPORTVAR
uint32_t
ciolib_bg
;
struct
mouse_event
{
int
event
;
int
bstate
;
...
...
@@ -267,8 +263,6 @@ struct conio_font_data_struct {
enum
ciolib_codepage
cp
;
};
CIOLIBEXPORTVAR
struct
conio_font_data_struct
conio_fontdata
[
257
];
struct
ciolib_pixels
{
uint32_t
*
pixels
;
uint32_t
*
pixelsb
;
...
...
@@ -386,6 +380,15 @@ typedef struct {
void
(
*
setwinposition
)
(
int
x
,
int
y
);
}
cioapi_t
;
#define _conio_kbhit() kbhit()
#ifdef __cplusplus
extern
"C"
{
#endif
CIOLIBEXPORTVAR
struct
text_info
cio_textinfo
;
CIOLIBEXPORTVAR
struct
conio_font_data_struct
conio_fontdata
[
257
];
CIOLIBEXPORTVAR
uint32_t
ciolib_fg
;
CIOLIBEXPORTVAR
uint32_t
ciolib_bg
;
CIOLIBEXPORTVAR
cioapi_t
cio_api
;
CIOLIBEXPORTVAR
int
_wscroll
;
CIOLIBEXPORTVAR
int
directvideo
;
...
...
@@ -396,11 +399,6 @@ CIOLIBEXPORTVAR char *ciolib_appname;
CIOLIBEXPORTVAR
int
ciolib_initial_window_height
;
CIOLIBEXPORTVAR
int
ciolib_initial_window_width
;
#define _conio_kbhit() kbhit()
#ifdef __cplusplus
extern
"C"
{
#endif
CIOLIBEXPORT
int
initciolib
(
int
mode
);
CIOLIBEXPORT
void
suspendciolib
(
void
);
...
...