mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 05:43:30 +00:00
79d0e047eb
svn path=/trunk/; revision=1032
18 lines
417 B
C
18 lines
417 B
C
/* ---------------- video.h ----------------- */
|
|
|
|
#ifndef VIDEO_H
|
|
#define VIDEO_H
|
|
|
|
#include "rect.h"
|
|
|
|
void GetVideo(DFRECT, PCHAR_INFO);
|
|
void StoreVideo(DFRECT, PCHAR_INFO);
|
|
void wputch(DFWINDOW, int, int, int);
|
|
char GetVideoChar(int, int);
|
|
void PutVideoChar(int, int, int);
|
|
void wputs(DFWINDOW, void *, int, int);
|
|
void scroll_window(DFWINDOW, DFRECT, int);
|
|
|
|
#define videochar(x,y) (GetVideoChar(x,y) & 0xFF)
|
|
|
|
#endif
|