home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 9 / FreshFishVol9-CD2.bin / bbs / util / muispeechtoy-0.01.lha / MUISpeechToy / src / demo.h next >
C/C++ Source or Header  |  1994-07-03  |  2KB  |  85 lines

  1. #include <libraries/mui.h>
  2.  
  3. #include <dos/dos.h>
  4. #include <graphics/gfxmacros.h>
  5. #include <workbench/workbench.h>
  6.  
  7. #include <clib/alib_protos.h>
  8. #include <clib/exec_protos.h>
  9. #include <clib/dos_protos.h>
  10. #include <clib/icon_protos.h>
  11. #include <clib/graphics_protos.h>
  12. #include <clib/intuition_protos.h>
  13. #include <clib/gadtools_protos.h>
  14. #include <clib/utility_protos.h>
  15. #include <clib/asl_protos.h>
  16. #include <clib/muimaster_protos.h>
  17.  
  18. #include <stdlib.h>
  19. #include <string.h>
  20. #include <stdio.h>
  21.  
  22.  
  23. /* Compiler specific stuff */
  24.  
  25. #ifdef _DCC
  26.  
  27. #define REG(x) __ ## x
  28. #define ASM
  29. #define SAVEDS __geta4
  30.  
  31. #else
  32.  
  33. #define REG(x) register __ ## x
  34.  
  35.  
  36. #include <pragmas/exec_pragmas.h>
  37. #include <pragmas/dos_pragmas.h>
  38. #include <pragmas/icon_pragmas.h>
  39. #include <pragmas/graphics_pragmas.h>
  40. #include <pragmas/intuition_pragmas.h>
  41. #include <pragmas/gadtools_pragmas.h>
  42. #include <pragmas/utility_pragmas.h>
  43. #include <pragmas/asl_pragmas.h>
  44. #include <pragmas/muimaster_pragmas.h>
  45.  
  46. extern struct Library *SysBase,*IntuitionBase,*UtilityBase,*GfxBase,*DOSBase,*IconBase;
  47. struct Library *MUIMasterBase;
  48.  
  49. #endif
  50.  
  51.  
  52. /*************************/
  53. /* Init & Fail Functions */
  54. /*************************/
  55.  
  56. static VOID fail(APTR app,char *str)
  57. {
  58.     if (app)
  59.         MUI_DisposeObject(app);
  60.  
  61.     if (MUIMasterBase)
  62.         CloseLibrary(MUIMasterBase);
  63.  
  64.     exit(0);
  65. }
  66.  
  67.  
  68. #ifdef _DCC
  69.  
  70. int brkfunc(void) { return(0); }
  71.  
  72. #endif
  73.  
  74.  
  75.  
  76. static VOID init(VOID)
  77. {
  78.     onbreak(brkfunc);
  79.  
  80.     if (!(MUIMasterBase = OpenLibrary(MUIMASTER_NAME,MUIMASTER_VMIN)))
  81.         fail(NULL,"Failed to open "MUIMASTER_NAME".");
  82. }
  83.  
  84.  
  85.