From 3d28f8f512349d177acb7d62e3c704895de1cd37 Mon Sep 17 00:00:00 2001 From: bernard Date: Wed, 13 Dec 2017 20:38:09 +0800 Subject: [PATCH] [UIEngine] Fix compiling warning when build under Win32. --- components/gui/include/rtgui/color.h | 6 +++++- components/gui/src/rtgui_app.c | 5 ++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/components/gui/include/rtgui/color.h b/components/gui/include/rtgui/color.h index cf6ef08623..f47189bd84 100644 --- a/components/gui/include/rtgui/color.h +++ b/components/gui/include/rtgui/color.h @@ -69,7 +69,11 @@ extern const rtgui_color_t default_background; #define HIGH_LIGHT RTGUI_RGB(0xfc, 0xfc, 0xfc) #define DARK_GREY RTGUI_RGB(0x7f, 0x7f, 0x7f) #define LIGHT_GREY RTGUI_RGB(0xc0, 0xc0, 0xc0) -#define TRANSPARENT RTGUI_ARGB(0, 0, 0, 0) + +#ifdef TRANSPARENT +#undef TRANSPARENT +#define TRANSPARENT 0 +#endif extern const rtgui_color_t red; extern const rtgui_color_t green; diff --git a/components/gui/src/rtgui_app.c b/components/gui/src/rtgui_app.c index 3488cbeced..9878ff4ea7 100644 --- a/components/gui/src/rtgui_app.c +++ b/components/gui/src/rtgui_app.c @@ -23,10 +23,13 @@ * 2012-07-07 Bernard move the send/recv message to the rtgui_system.c */ +#include +#include + #include #include #include -#include +#include "topwin.h" static void _rtgui_app_constructor(struct rtgui_app *app) { -- GitLab