home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 13
/
AACD13.ISO
/
AACD
/
Resources
/
System
/
BoingBag1
/
Contributions
/
InstallerNG
/
GUI-API
/
example
/
igui_SetParseGauge.c
< prev
next >
Wrap
C/C++ Source or Header
|
1999-10-28
|
990b
|
50 lines
#include "includes.h"
#include "installergui_data.h"
/********************************************************************
*
* DESCRIPTION
*
* set the gauge value for the parse gauge (if your gui does
* not provide this feature, just return 0)
*
* IN: application - pointer to the private application structure
* value - a number between 0...100
*
*/
/********************************************************************
*
* STATIC
*
*/
/********************************************************************
*
* EXTERN
*
*/
/********************************************************************
*
* PUBLIC
*
*/
/********************************************************************
*
* CODE
*
*/
void __asm igui_SetParseGauge(register __a0 APTR application,
register __d0 long value)
{
#ifdef DEBUG
DEBUG_MAKRO
#endif
set(((struct Application *) application)->app_ParseGauge, MUIA_Gauge_Current, value);
}