home *** CD-ROM | disk | FTP | other *** search
-
- #include "includes.h"
- #include "installergui_data.h"
-
- /********************************************************************
- *
- * DESCRIPTION
- *
- */
-
- /********************************************************************
- *
- * STATIC
- *
- */
-
- /********************************************************************
- *
- * EXTERN
- *
- */
-
- /********************************************************************
- *
- * PUBLIC
- *
- */
-
- /********************************************************************
- *
- * CODE
- *
- */
-
- char * __asm igui_Message(register __a0 APTR application,
- register __a1 struct FunctionEnvironment *localenv,
- register __a2 char *text)
- {
- #ifdef DEBUG
- DEBUG_MAKRO
- #endif
-
- // create a simple text object an sho it
- if (guistuff_NewContent(application, guistuff_InitSimpleText(text)))
- {
- // wait for the user
- igui_WaitApp(application);
- }
-
- // the empty panel...
- igui_EmptyPanel(application);
- return (text);
- }
-