diff options
Diffstat (limited to 'brailleboi.h')
| -rw-r--r-- | brailleboi.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/brailleboi.h b/brailleboi.h index f909181..f06d0da 100644 --- a/brailleboi.h +++ b/brailleboi.h @@ -3,6 +3,7 @@ typedef struct image_buffer { int width, height; + int char_width, char_height; int* contents; } image_buffer; @@ -14,4 +15,8 @@ int brailleReorganizeBits(int old); void braillePrint(int data); +int braillePlot(int x, int y, image_buffer* buf); + +void brailleUpdateScreen(image_buffer* buf); + #endif |
