home *** CD-ROM | disk | FTP | other *** search
/ Phoenix Heaven Sunny 2 / APPARE2.BIN / oh_towns / taropyon / he386 / ccisrc / main.c < prev    next >
C/C++ Source or Header  |  1995-06-20  |  533b  |  35 lines

  1.  
  2. #include    "defs.h"
  3. #include    "he386.h"
  4.  
  5. #include    "midilib.c"
  6. #include    "gm.c"
  7. #include    "gs.c"
  8. #ifdef        _SC55DISP
  9. #include    "sc55disp.c"
  10. #endif
  11. #ifdef        _GMEGA
  12. #    include    "gmega.c"
  13. #endif
  14. #ifdef        _TG300
  15. #    include    "tg300.c"
  16. #endif
  17.  
  18. int        HE386_start( char *sqr )
  19. {
  20.     GM_macroInit(sqr);    /* GM macro            */
  21.     GS_macroInit(sqr);    /* GS(SC-55) macro    */
  22.  
  23. #ifdef    _SC55DISP
  24.     SC55disp_macroInit( sqr );
  25. #endif
  26. #ifdef        _GMEGA
  27.     GMega_macroInit(sqr);
  28. #endif
  29. #ifdef        _TG300
  30.     TG300_macroInit(sqr);
  31. #endif
  32.  
  33.     return (NORMAL);
  34. }
  35.