Add oleacc to build
[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 DfGetVideo(DFRECT, PCHAR_INFO);
9 void DfStoreVideo(DFRECT, PCHAR_INFO);
10 void DfWPutch(DFWINDOW, int, int, int);
11 char DfGetVideoChar(int, int);
12 void DfPutVideoChar(int, int, int);
13 void DfWPuts(DFWINDOW, void *, int, int);
14 void DfScrollWindow(DFWINDOW, DFRECT, int);
15
16 #define DfVideoChar(x,y) (DfGetVideoChar(x,y) & 0xFF)
17
18 #endif