2000-03-05 19:58:08 +00:00
|
|
|
/* ---------------- video.h ----------------- */
|
|
|
|
|
|
|
|
#ifndef VIDEO_H
|
|
|
|
#define VIDEO_H
|
|
|
|
|
|
|
|
#include "rect.h"
|
|
|
|
|
2003-06-19 02:48:13 +00:00
|
|
|
void DfGetVideo(DFRECT, PCHAR_INFO);
|
|
|
|
void DfStoreVideo(DFRECT, PCHAR_INFO);
|
|
|
|
void DfWPutch(DFWINDOW, int, int, int);
|
|
|
|
char DfGetVideoChar(int, int);
|
|
|
|
void DfPutVideoChar(int, int, int);
|
|
|
|
void DfWPuts(DFWINDOW, void *, int, int);
|
|
|
|
void DfScrollWindow(DFWINDOW, DFRECT, int);
|
2000-03-05 19:58:08 +00:00
|
|
|
|
2003-06-19 02:48:13 +00:00
|
|
|
#define DfVideoChar(x,y) (DfGetVideoChar(x,y) & 0xFF)
|
2000-03-05 19:58:08 +00:00
|
|
|
|
|
|
|
#endif
|