mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
ec3b369d83
svn path=/trunk/; revision=4921
19 lines
434 B
C
19 lines
434 B
C
/* ---------------- video.h ----------------- */
|
|
|
|
#ifndef VIDEO_H
|
|
#define VIDEO_H
|
|
|
|
#include "rect.h"
|
|
|
|
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);
|
|
|
|
#define DfVideoChar(x,y) (DfGetVideoChar(x,y) & 0xFF)
|
|
|
|
#endif
|