home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 13
/
AACD13.ISO
/
AACD
/
Resources
/
System
/
BoingBag1
/
Contributions
/
InstallerNG
/
GUI-API
/
example
/
igui_GetGUIInfo.c
< prev
next >
Wrap
C/C++ Source or Header
|
1999-10-28
|
840b
|
50 lines
#include "includes.h"
#include "installergui_data.h"
/********************************************************************
*
* DESCRIPTION
*
* return a string, which contains a short description of the
* GUI. any installer script can get this string by calling the
* (DATABASE "gui") function
*
* IN: -
* OUT: short description string
*
*/
/********************************************************************
*
* STATIC
*
*/
/********************************************************************
*
* EXTERN
*
*/
/********************************************************************
*
* PUBLIC
*
*/
/********************************************************************
*
* CODE
*
*/
char * __asm igui_GetGUIInfo(void)
{
#ifdef DEBUG
DEBUG_MAKRO
#endif
return ("MUI plugin by Savage");
}