]>
Commit | Line | Data |
---|---|---|
5a8c51cd WD |
1 | /* |
2 | * (C) Copyright 2004 | |
3 | * | |
4 | * Pantelis Antoniou <panto@intracom.gr> | |
5 | * Intracom S.A. | |
6 | * | |
1a459660 | 7 | * SPDX-License-Identifier: GPL-2.0+ |
5a8c51cd WD |
8 | */ |
9 | ||
10 | /* Video support for Epson SED156x chipset(s) */ | |
11 | ||
12 | #ifndef SED156X_H | |
13 | #define SED156X_H | |
14 | ||
15 | void sed156x_init(void); | |
16 | void sed156x_clear(void); | |
17 | void sed156x_output_at(int x, int y, const char *str, int size); | |
18 | void sed156x_reverse_at(int x, int y, int size); | |
19 | void sed156x_sync(void); | |
20 | void sed156x_scroll(int dx, int dy); | |
21 | ||
22 | /* export display */ | |
23 | extern const int sed156x_text_width; | |
24 | extern const int sed156x_text_height; | |
25 | ||
26 | #endif /* SED156X_H */ |