home *** CD-ROM | disk | FTP | other *** search
-
- #include "includes.h"
- #include "installergui_data.h"
-
- /********************************************************************
- *
- * DESCRIPTION
- *
- */
-
- /********************************************************************
- *
- * STATIC
- *
- */
-
- /********************************************************************
- *
- * EXTERN
- *
- */
-
- /********************************************************************
- *
- * PUBLIC
- *
- */
-
- /********************************************************************
- *
- * CODE
- *
- */
-
- long __asm igui_Request(register __a0 APTR application,
- register __a1 char *title,
- register __a2 char *gads,
- register __d0 char *body,
- register __d1 APTR args)
-
- {
- #ifdef DEBUG
- DEBUG_MAKRO
- #endif
-
- {
- struct Application *app = (struct Application *) application;
-
- // request
- return(MUI_RequestA(app->app_Application,
- app->app_MainWindow,
- 0, title, gads, body, args));
- }
- }
-
-