From 53ddd87dc24ec328d1019b90c633a56ee4bc37e8 Mon Sep 17 00:00:00 2001 From: truelight Date: Thu, 10 Nov 2005 15:23:55 +0000 Subject: [PATCH] (svn r3162) -Fix: renamed 'Message' to 'WindowMessage', a struct named 'Message' already exists on MorphOS --- window.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/window.h b/window.h index df2ec04766..5d06d636e1 100644 --- a/window.h +++ b/window.h @@ -272,11 +272,11 @@ typedef struct ResizeInfo { uint step_height; } ResizeInfo; -typedef struct Message { +typedef struct WindowMessage { int msg; int wparam; int lparam; -} Message; +} WindowMessage; struct Window { uint16 flags4; @@ -298,7 +298,7 @@ struct Window { Widget *widget; uint32 desc_flags; - Message message; + WindowMessage message; byte custom[WINDOW_CUSTOM_SIZE]; };