home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 20 / AACD20.BIN / AACD / Programming / AmIDE / developer / include / amide / amide_api_base.h next >
Encoding:
C/C++ Source or Header  |  2001-03-04  |  1.7 KB  |  57 lines

  1. /*
  2. **  $Id: amide_api_base.h,v 1.2 2001/03/04 18:26:49 damato Exp $
  3. **
  4. **  AmIDE - Amiga Integrated Development Environment
  5. **          main include file for amide_api module
  6. **
  7. **  Copyright (C) 1998-2001 by
  8. **
  9. **  LightSpeed Communications GbR
  10. **
  11. **  Jens Langner                        Jens Troeger
  12. **  Bergstrasse 68                      i4/182 Dornoch Tce
  13. **  01069 Dresden                       Highgate Hill, QLD, 4101
  14. **  Germany                             Australia
  15. **  <damato@light-speed.de>             <savage@light-speed.de>
  16. **
  17. **  This program is free software; you can redistribute it and/or modify
  18. **  it under the terms of the GNU General Public License as published by
  19. **  the Free Software Foundation; either version 2 of the License, or
  20. **  any later version.
  21. **
  22. **  This program is distributed in the hope that it will be useful,
  23. **  but WITHOUT ANY WARRANTY; without even the implied warranty of
  24. **  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  25. **  GNU General Public License for more details.
  26. **
  27. **  You should have received a copy of the GNU General Public License
  28. **  along with this program; if not, write to the Free Software
  29. **  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  30. **
  31. **  $VER: amide_api_base.h 37.1 (04.03.2001)
  32. */
  33.  
  34. #ifndef _AMIDE_API_BASE_H_
  35. #define _AMIDE_API_BASE_H_
  36.  
  37. #ifdef   __MAXON__
  38. #ifndef  EXEC_LIBRARIES_H
  39. #include <exec/libraries.h>
  40. #endif
  41. #else
  42. #ifndef  EXEC_LIBRARIES
  43. #include <exec/libraries.h>
  44. #endif /* EXEC_LIBRARIES_H */
  45. #endif
  46.  
  47. struct AmIDE_API_Base
  48. {
  49.  struct Library         exb_LibNode;
  50.  SEGLISTPTR             exb_SegList;
  51.  struct ExecBase       *exb_SysBase;
  52.  struct IntuitionBase  *exb_IntuitionBase;
  53.  struct GfxBase        *exb_GfxBase;
  54. };
  55.  
  56. #endif /* _AMIDE_API_BASE_H_ */
  57.