Some improvements for the Kiel C compiler

ugfx_release_2.6
inmarket 2014-07-29 10:57:01 +10:00
parent 05dd4f404b
commit ed14e4ca56
2 changed files with 9 additions and 1 deletions

View File

@ -21,7 +21,11 @@
#if 1
#undef INLINE
#define INLINE inline
#if defined(__KEIL__) || defined(__C51__)
#define INLINE __inline
#else
#define INLINE inline
#endif
#else
#undef INLINE
#define INLINE

View File

@ -23,6 +23,10 @@
#if GFX_USE_GWIN || defined(__DOXYGEN__)
#if defined(__KEIL__) || defined(__C51__)
#pragma anon_unions
#endif
/**
* @brief The predefined flags for a Window
* @{