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 >
C/C++ Source or Header  |  1999-10-28  |  840b  |  50 lines

  1.  
  2. #include "includes.h"
  3. #include "installergui_data.h"
  4.  
  5. /********************************************************************
  6.  *
  7.  *  DESCRIPTION
  8.  *
  9.  *  return a string, which contains a short description of the
  10.  *  GUI. any installer script can get this string by calling the
  11.  *  (DATABASE "gui") function
  12.  *
  13.  *  IN:  -
  14.  *  OUT: short description string
  15.  *
  16.  */
  17.  
  18. /********************************************************************
  19.  *
  20.  *  STATIC
  21.  *
  22.  */
  23.  
  24. /********************************************************************
  25.  *
  26.  *  EXTERN
  27.  *
  28.  */
  29.  
  30. /********************************************************************
  31.  *
  32.  *  PUBLIC
  33.  *
  34.  */
  35.  
  36. /********************************************************************
  37.  *
  38.  *  CODE
  39.  *
  40.  */
  41.  
  42. char * __asm igui_GetGUIInfo(void)
  43. {
  44.   #ifdef DEBUG
  45.   DEBUG_MAKRO
  46.   #endif
  47.  
  48.   return ("MUI plugin by Savage");
  49. }
  50.