home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / Fax / AVMA&GPFax-V1,33Sources.LHA / mui_support.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-05-25  |  3.7 KB  |  176 lines

  1. /*************************************************************/
  2. /* Includes and other common stuff for the MUI demo programs */
  3. /*************************************************************/
  4.  
  5. /* MUI */
  6. #include <libraries/mui.h>
  7.  
  8. /* System */
  9. #include <dos.h>
  10. #include <dos/dos.h>
  11. #include <graphics/gfxmacros.h>
  12. #include <workbench/workbench.h>
  13.  
  14. /* Prototypes */
  15. #include <clib/alib_protos.h>
  16. #include <clib/exec_protos.h>
  17. #include <clib/dos_protos.h>
  18. #include <clib/icon_protos.h>
  19. #include <clib/graphics_protos.h>
  20. #include <clib/intuition_protos.h>
  21. #include <clib/gadtools_protos.h>
  22. #include <clib/muimaster_protos.h>
  23. #include <clib/asl_protos.h>
  24.  
  25. /* ANSI C */
  26. #include <stdlib.h>
  27. #include <string.h>
  28. #include <stdio.h>
  29.  
  30.  
  31. /* Compiler specific stuff */
  32.  
  33. #ifdef _DCC
  34.  
  35. #define REG(x) __ ## x
  36. #define ASM
  37. #define SAVEDS __geta4
  38.  
  39. #else
  40.  
  41. #define REG(x) register __ ## x
  42. #define ASM    __asm
  43. #define SAVEDS __saveds
  44.  
  45. #include <pragmas/exec_pragmas.h>
  46. #include <pragmas/dos_pragmas.h>
  47. #include <pragmas/icon_pragmas.h>
  48. #include <pragmas/graphics_pragmas.h>
  49. #include <pragmas/intuition_pragmas.h>
  50. #include <pragmas/gadtools_pragmas.h>
  51. #include <pragmas/muimaster_pragmas.h>
  52. #include <pragmas/asl_pragmas.h>
  53.  
  54. extern struct Library *IntuitionBase,*UtilityBase,*GfxBase,*DOSBase,*IconBase;
  55. static struct Library *MUIMasterBase;
  56.  
  57. #endif
  58.  
  59. void shutdown_icon(void);
  60.  
  61.  
  62. /*************************/
  63. /* Init & Fail Functions */
  64. /*************************/
  65.  
  66. static VOID fail(APTR app,char *str)
  67. {
  68.   int muierror = MUIE_OK;
  69.  
  70.   shutdown_icon();
  71.  
  72.   if (MUIMasterBase) muierror = MUI_Error();
  73.   else printf("Can't open %s\n", MUIMASTER_NAME);
  74.  
  75.   if (app) {
  76.     MUI_DisposeObject(app);
  77.   }
  78.  
  79. #ifndef _DCC
  80.     if (MUIMasterBase)
  81.         CloseLibrary(MUIMasterBase);
  82. #endif
  83.  
  84.   if (str) {
  85.     switch (muierror) {
  86.     case MUIE_OK:
  87.       break;
  88.     case MUIE_OutOfMemory:
  89.       puts("I ran out of memory :(");
  90.       break;
  91.     case MUIE_OutOfGfxMemory:
  92.       puts("I ran out of graphics memory :(");
  93.       break;
  94.     case MUIE_InvalidWindowObject:
  95.       puts("Bad window object.  Please contact the author.");
  96.       break;
  97.     case MUIE_MissingLibrary:
  98.       puts("Can't open a necessary library.");
  99.       break;
  100.     case MUIE_NoARexx:
  101.       puts("Can't open an ARexx port!");
  102.       break;
  103.     case MUIE_SingleTask:
  104.       puts("This program is already running!");
  105.       break;
  106.     }
  107.     puts(str);
  108.     exit(20);
  109.   }
  110.   exit(0);
  111. }
  112.  
  113. static VOID init(int argc, char* argv[])
  114. {
  115.     extern void workbench_startup(char**);
  116.     extern void shell_startup(void);
  117.     extern struct DiskObject* AVM_DiskObject;
  118.  
  119. #ifndef _DCC
  120.     if (!(MUIMasterBase = OpenLibrary(MUIMASTER_NAME,MUIMASTER_VMIN)))
  121.         fail(NULL,"Failed to open "MUIMASTER_NAME".");
  122. #endif
  123.     
  124.     if (argc == 0) workbench_startup(argv);
  125.     else shell_startup();
  126. }
  127.  
  128. #ifndef __SASC
  129. static VOID stccpy(char *dest,char *source,int len)
  130. {
  131.     strncpy(dest,source,len);
  132.     dest[len-1]='\0';
  133. }
  134.  
  135. int wbmain(struct WBStartup *wb_startup)
  136. {
  137.     extern int main(int argc, char *argv[]);
  138.     return (main(0, NULL));
  139. }
  140. #endif
  141.  
  142. #ifdef __SASC
  143. int CXBRK(void) { return(0); }
  144. int _CXBRK(void) { return(0); }
  145. void chkabort(void) { }
  146. #endif
  147.  
  148. LONG __stack = 8192;
  149.  
  150. /* some macros */
  151.  
  152. #define StringDTMF(contents,maxlen)\
  153.     StringObject,\
  154.         StringFrame,\
  155.         MUIA_String_MaxLen  , maxlen,\
  156.         MUIA_String_Contents, contents,\
  157.                 MUIA_String_Accept, "0123456789#*", \
  158.         End
  159.  
  160. #define StringTelNo(contents,maxlen)\
  161.     StringObject,\
  162.         StringFrame,\
  163.         MUIA_String_MaxLen  , maxlen,\
  164.         MUIA_String_Contents, contents,\
  165.                 MUIA_String_Accept, "0123456789#*,@Ww()-", \
  166.         End
  167.  
  168. #define StringNoSpaces(contents,maxlen)\
  169.     StringObject,\
  170.         StringFrame,\
  171.         MUIA_String_MaxLen  , maxlen,\
  172.         MUIA_String_Contents, contents,\
  173.                 MUIA_String_Accept, "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_0123456789", \
  174.         End
  175.  
  176.