2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
8 #include <proto/exec.h>
9 #include <exec/ports.h>
10 #include "gadtools_intern.h"
12 /*********************************************************************
15 #include <proto/gadtools.h>
16 #include <intuition/intuition.h>
18 AROS_LH1(void, GT_ReplyIMsg
,
21 AROS_LHA(struct IntuiMessage
*, imsg
, A1
),
24 struct Library
*, GadToolsBase
, 13, GadTools
)
27 Replies a message gotten via GT_GetIMsg().
30 imsg - The message to reply.
41 GT_GetIMsg(), exec.library/ReplyMsg()
47 ***************************************************************************/
51 struct IntuiMessage
*origmsg
;
55 origmsg
= GT_PostFilterIMsg(imsg
);
57 ReplyMsg(&origmsg
->ExecMessage
);