home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 4 / AACD04.ISO / AACD / Programming / envsof20 / source / syntax / defs.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-08-28  |  974 b   |  60 lines

  1. /*
  2.  * defs.h
  3.  *
  4.  * Copyright 1999 Thomas Aglassinger and others, see file "forum.txt"
  5.  */
  6.  
  7. #include <exec/types.h>
  8. #include <exec/ports.h>
  9. #include <exec/semaphores.h>
  10. #include <exec/libraries.h>
  11. #include <dos/dos.h>
  12. #include <dos/rdargs.h>
  13. #include <exec/memory.h>
  14. #include <exec/lists.h>
  15. #include <exec/nodes.h>
  16.  
  17. #include <clib/exec_protos.h>
  18. #include <clib/alib_protos.h>
  19. #include <clib/dos_protos.h>
  20.  
  21. #include <string.h>
  22. #include <ctype.h>
  23.  
  24. #ifdef _DCC
  25. #define LibCall    __geta4 __regargs
  26. #define Prototype  extern
  27.  
  28. #else
  29.  
  30. #define LibCall
  31. #define Prototype
  32.  
  33. #define __A0
  34. #define __A1
  35. #define __A2
  36. #define __A3
  37. #define __A4
  38. #define __A5
  39. #define __A6
  40. #define __A7
  41.  
  42. #define __D0
  43. #define __D1
  44. #define __D2
  45. #define __D3
  46. #define __D4
  47. #define __D5
  48. #define __D6
  49. #define __D7
  50.  
  51. #endif /* _DCC */
  52.  
  53.  
  54. #include "golded:developer/include/editor.h"
  55. #include "golded:developer/syntax/include/scanlib.h"
  56. #include "o/lib-protos.h"
  57.  
  58. extern const char LibName[];
  59. extern const char LibId[];
  60.