diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2016-06-12 20:08:57 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2016-06-12 20:08:57 +0200 |
| commit | ba07c2bc98fdba991b6d6444d57f0f897cf5959f (patch) | |
| tree | 6ff34bf1bf181a6eebcd59bbeba2ad05ffe4408b /draw.h | |
| parent | 847d1a917f6cb17493c66398ce4ce53b89d8c438 (diff) | |
| download | fx-matris-master.tar.gz fx-matris-master.zip | |
Diffstat (limited to 'draw.h')
| -rw-r--r-- | draw.h | 28 |
1 files changed, 14 insertions, 14 deletions
@@ -1,15 +1,15 @@ -#ifndef __DRAW_H__
-#define __DRAW_H__
-
-void pixel(char *buffer, int x, int y, int type);
-void pixelgray(char *buffer, int x,int y, int type);
-void line(char *buffer, int x1, int y1, int x2, int y2, int color);
-void drawChar(char *buffer, char charact, int posx, int posy);
-void drawString(char *buffer, char *string, unsigned char strlenght, int posx, int posy);
-void drawNumber(char *buffer, char num, int posx, int posy);
-void fillbox(char *buffer, int posx, int posy, int type);
-void normalfillbox(char *buffer, int posx, int posy, int type);
-int DrawSprite();
-void DrawBlock();
-
+#ifndef __DRAW_H__ +#define __DRAW_H__ + +void pixel(char *buffer, int x, int y, int type); +void pixelgray(char *buffer, int x,int y, int type); +void line(char *buffer, int x1, int y1, int x2, int y2, int color); +void drawChar(char *buffer, char charact, int posx, int posy); +void drawString(char *buffer, char *string, unsigned char strlenght, int posx, int posy); +void drawNumber(char *buffer, char num, int posx, int posy); +void fillbox(char *buffer, int posx, int posy, int type); +void normalfillbox(char *buffer, int posx, int posy, int type); +int DrawSprite(); +void DrawBlock(); + #endif
\ No newline at end of file |
