Subversion Repositories SvarDOS

Compare Revisions

Ignore whitespace Rev 27 → Rev 28

/install/video.h
0,0 → 1,16
/*
* Video routines used by the Svarog386 installer
* Copyright (C) 2016 Mateusz Viste
*/
 
#ifndef VIDEO_H_SENTINEL
#define VIDEO_H_SENTINEL
 
void video_clear(unsigned short attr, int offset);
void video_putchar(int y, int x, unsigned short attr, int c);
void video_putcharmulti(int y, int x, unsigned short attr, int c, int repeat, int step);
void video_putstring(int y, int x, unsigned short attr, char *str);
void video_putstringfix(int y, int x, unsigned short attr, char *s, int w);
void video_movecursor(int y, int x);
 
#endif