gfx_blitImage(): New function; gfx_blitRaster(): Fix clipping bug.
[bertos.git] / cfg / compiler.h
index dfeee567ca0ae132ed2b8056eddbc85cd352d47b..78a63bdcb449f7726856853d4dd4407b939bb5a7 100755 (executable)
@@ -14,6 +14,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.18  2006/03/22 13:34:34  bernie
+ *#* MSVC support.
+ *#*
  *#* Revision 1.17  2006/03/22 09:48:35  bernie
  *#* Formatting.
  *#*
        /* MSVC doesn't support C99's __func__, but has a similar extension. */
        #define __func__ __FUNCTION__
 
+       /* MSVC doesn't support C99's inline keyword */
+       #ifndef __cplusplus
+               #define INLINE __inline
+       #endif
+
 #elif defined(__GNUC__)
 
        /* Compiler features */