Graphics Drawing Interface EZLCD4 display using serial

Revision:
2:d0ec618edc6d
Parent:
0:607ac6f9ce7a
--- a/gdiezl4.h	Mon Mar 14 16:05:58 2011 +0000
+++ b/gdiezl4.h	Tue Mar 15 15:11:24 2011 +0000
@@ -242,14 +242,14 @@
      *
      * @param    bOffOn = state of the backlight
      */
-    void     attach( uint32_t (*function)(uint32_t) = 0) { m_pvFuncCallBack.attach(function); }
+    void     attach( U32 ( *function )( U32 ) = 0) { m_pvFuncCallBack.attach( function ); }
 
     /** backlight ontrol
      *
      * @param    bOffOn = state of the backlight
      */
     template<class T> 
-    void     attach(T* item, uint32_t (T::*method)(uint32_t)) { m_pvFuncCallBack.attach(item, method); }    
+    void     attach( T* item, U32 ( T::*method )( U32 )) { m_pvFuncCallBack.attach( item, method ); }    
 };