Updated years in version info.
[reactos.git] / rosapps / dflat32 / video.h
1 /* ---------------- video.h ----------------- */
2
3 #ifndef VIDEO_H
4 #define VIDEO_H
5
6 #include "rect.h"
7
8 void GetVideo(DFRECT, PCHAR_INFO);
9 void StoreVideo(DFRECT, PCHAR_INFO);
10 void wputch(DFWINDOW, int, int, int);
11 char GetVideoChar(int, int);
12 void PutVideoChar(int, int, int);
13 void wputs(DFWINDOW, void *, int, int);
14 void scroll_window(DFWINDOW, DFRECT, int);
15
16 #define videochar(x,y) (GetVideoChar(x,y) & 0xFF)
17
18 #endif