X-Git-Url: http://cvs.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/15c4dc5ace24e6081d1597b011148f156cdd599e..c7ea35a9fbdb39825afbcce51088ba90f903b147:/armsrc/LCD.h

diff --git a/armsrc/LCD.h b/armsrc/LCD.h
index ccc94317..2643f66e 100644
--- a/armsrc/LCD.h
+++ b/armsrc/LCD.h
@@ -1,5 +1,17 @@
-#ifndef __LCD
-#define __LCD
+//-----------------------------------------------------------------------------
+// This code is licensed to you under the terms of the GNU GPL, version 2 or,
+// at your option, any later version. See the LICENSE.txt file for the text of
+// the license.
+//-----------------------------------------------------------------------------
+// LCD code
+//-----------------------------------------------------------------------------
+
+#ifndef __LCD_H
+#define __LCD_H
+
+#include "proxmark3.h"
+#include "apps.h"
+#include "fonts.h"
 
 // The resolution of the LCD
 #define LCD_XRES	132
@@ -114,4 +126,5 @@ void LCDSetXY(unsigned char x, unsigned char y);
 void LCDSetPixel(unsigned char x, unsigned char y, unsigned char color);
 void LCDString (char *lcd_string, const char *font_style,unsigned char x, unsigned char y, unsigned char fcolor, unsigned char bcolor);
 void LCDFill (unsigned char xs,unsigned char ys,unsigned char width,unsigned char height, unsigned char color);
+
 #endif