reorganization

This commit is contained in:
Pavol Rusnak 2011-06-12 19:33:18 +02:00
parent bdd9f6ac92
commit fd6e33a390
11 changed files with 19 additions and 11 deletions

14
dos/gfx.h Normal file
View file

@ -0,0 +1,14 @@
#ifndef _BRMBAR_GRAPHIX_H_
#define _BRMBAR_GRAPHIX_H_
#define COL_WHITE 15
#define COL_BLACK 0
extern void init_graphics();
extern void put_pixel(x, y, color);
extern void deinit_graphics();
#endif