Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Main
Synchronet
Commits
e5fd9ce6
Commit
e5fd9ce6
authored
20 years ago
by
deuce
Browse files
Options
Downloads
Patches
Plain Diff
Add ciolib_* prototypes
parent
7ca7edbb
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/conio/ciolib.h
+33
-0
33 additions, 0 deletions
src/conio/ciolib.h
with
33 additions
and
0 deletions
src/conio/ciolib.h
+
33
−
0
View file @
e5fd9ce6
...
...
@@ -128,6 +128,39 @@ extern int directvideo;
extern
"C"
{
#endif
int
initciolib
(
int
mode
);
int
ciolib_movetext
(
int
sx
,
int
sy
,
int
ex
,
int
ey
,
int
dx
,
int
dy
);
char
*
ciolib_cgets
(
char
*
str
);
int
ciolib_cscanf
(
char
*
format
,
...);
int
ciolib_kbhit
(
void
);
int
ciolib_getch
(
void
);
int
ciolib_getche
(
void
);
int
ciolib_ungetch
(
int
ch
);
void
ciolib_gettextinfo
(
struct
text_info
*
info
);
int
ciolib_wherex
(
void
);
int
ciolib_wherey
(
void
);
void
ciolib_wscroll
(
void
);
void
ciolib_gotoxy
(
int
x
,
int
y
);
void
ciolib_clreol
(
void
);
void
ciolib_clrscr
(
void
);
int
ciolib_cputs
(
char
*
str
);
int
ciolib_cprintf
(
char
*
fmat
,
...);
void
ciolib_textbackground
(
int
colour
);
void
ciolib_textcolor
(
int
colour
);
void
ciolib_highvideo
(
void
);
void
ciolib_lowvideo
(
void
);
void
ciolib_normvideo
(
void
);
int
ciolib_puttext
(
int
a
,
int
b
,
int
c
,
int
d
,
unsigned
char
*
e
);
int
ciolib_gettext
(
int
a
,
int
b
,
int
c
,
int
d
,
unsigned
char
*
e
);
void
ciolib_textattr
(
unsigned
char
a
);
void
ciolib_delay
(
long
a
);
int
ciolib_putch
(
unsigned
char
a
);
void
ciolib_setcursortype
(
int
a
);
void
ciolib_textmode
(
int
mode
);
void
ciolib_window
(
int
sx
,
int
sy
,
int
ex
,
int
ey
);
void
ciolib_delline
(
void
);
void
ciolib_insline
(
void
);
char
*
ciolib_getpass
(
const
char
*
prompt
);
#ifdef __cplusplus
}
#endif
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment