home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 13
/
AACD13.ISO
/
AACD
/
Resources
/
System
/
BoingBag1
/
Contributions
/
InstallerNG
/
GUI-API
/
example
/
igui_ClearGUIEvent.c
< prev
next >
Wrap
C/C++ Source or Header
|
1999-10-28
|
977b
|
50 lines
#include "includes.h"
#include "installergui_data.h"
/********************************************************************
*
* DESCRIPTION
*
* delete the stored event value from the GUI. the function
* igui_QuietWaitApp() has to save the type of the event, such that
* the igui_GetGUIEvent() can read the event from the GUI
*
* IN: application - pointer to the private application structure
* OUT: -
*
*/
/********************************************************************
*
* STATIC
*
*/
/********************************************************************
*
* EXTERN
*
*/
/********************************************************************
*
* PUBLIC
*
*/
/********************************************************************
*
* CODE
*
*/
void __asm igui_ClearGUIEvent(register __a0 APTR application)
{
#ifdef DEBUG
DEBUG_MAKRO
#endif
((struct Application *) application)->app_CurrentGUIEvent = GUIEVENT_NOTHING;
}