Subversion Repositories SvarDOS

Rev

Rev 28 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 28 Rev 29
Line 4... Line 4...
4
 */
4
 */
5
 
5
 
6
#ifndef VIDEO_H_SENTINEL
6
#ifndef VIDEO_H_SENTINEL
7
#define VIDEO_H_SENTINEL
7
#define VIDEO_H_SENTINEL
8
 
8
 
-
 
9
int video_init(void);
9
void video_clear(unsigned short attr, int offset);
10
void video_clear(unsigned short attr, int offset);
10
void video_putchar(int y, int x, unsigned short attr, int c);
11
void video_putchar(int y, int x, unsigned short attr, int c);
11
void video_putcharmulti(int y, int x, unsigned short attr, int c, int repeat, int step);
12
void video_putcharmulti(int y, int x, unsigned short attr, int c, int repeat, int step);
12
void video_putstring(int y, int x, unsigned short attr, char *str);
13
void video_putstring(int y, int x, unsigned short attr, char *str);
13
void video_putstringfix(int y, int x, unsigned short attr, char *s, int w);
14
void video_putstringfix(int y, int x, unsigned short attr, char *s, int w);