home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 13
/
AACD13.ISO
/
AACD
/
Resources
/
System
/
BoingBag1
/
Contributions
/
InstallerNG
/
GUI-API
/
example
/
igui_Complete.c
< prev
next >
Wrap
C/C++ Source or Header
|
1999-10-28
|
979b
|
57 lines
#include "includes.h"
#include "installergui_data.h"
/********************************************************************
*
* DESCRIPTION
*
*/
/********************************************************************
*
* STATIC
*
*/
/********************************************************************
*
* EXTERN
*
*/
/********************************************************************
*
* PUBLIC
*
*/
/********************************************************************
*
* CODE
*
*/
void __asm igui_Complete(register __a0 APTR application, register __d0 long value)
{
#ifdef DEBUG
DEBUG_MAKRO
#endif
{
struct Application *app = application;
char *newtitle;
long args[2];
args[0] = app -> app_GlobalEnv[GENV_APPNAME];
args[1] = value;
if (newtitle = sav_StringF2(app -> app_Texts[COMPLETE], &args))
{
set(app->app_MainWindow, MUIA_Window_Title, newtitle);
}
else { /* OUT OF MEM */ }
}
}