1
0
mirror of https://github.com/rzzzwilson/pymlac.git synced 2025-06-10 09:32:41 +00:00
Files
rzzzwilson.pymlac/vimlac/display.h
2018-08-03 10:49:14 +07:00

25 lines
374 B
C

/*
* Interface for the vimlac display.
*
* This interface is used by all the display backends:
* PBM
* SDL
*/
#ifndef DISPLAY_H
#define DISPLAY_H
#include "vimlac.h"
bool display_init(void);
void display_draw(int x1, int y1, int x2, int y2);
void display_reset(void);
void display_write(void);
void display_close(void);
bool display_dirty(void);
#endif