home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 3 / AACD03.BIN / AACD / Programming / Triton / Source / trcl / trcl.c < prev    next >
C/C++ Source or Header  |  1998-05-23  |  2KB  |  73 lines

  1. /*
  2.  *  OpenTriton -- A free release of the triton.library source code
  3.  *  Copyright (C) 1993-1998  Stefan Zeiger
  4.  *
  5.  *  This program is free software; you can redistribute it and/or modify
  6.  *  it under the terms of the GNU General Public License as published by
  7.  *  the Free Software Foundation; either version 2 of the License, or
  8.  *  (at your option) any later version.
  9.  *
  10.  *  This program is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.  *  GNU General Public License for more details.
  14.  *
  15.  *  You should have received a copy of the GNU General Public License
  16.  *  along with this program; if not, write to the Free Software
  17.  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  *
  19.  *  trcl.c - Basic Triton Class source
  20.  *
  21.  */
  22.  
  23.  
  24. #include <exec/exec.h>
  25. #include <intuition/intuition.h>
  26. #include <libraries/triton.h>
  27. #include <clib/exec_protos.h>
  28. #include <clib/intuition_protos.h>
  29. #include <clib/triton_protos.h>
  30. #include <clib/alib_protos.h>
  31. #include <pragmas/exec_pragmas.h>
  32. #include <pragmas/intuition_pragmas.h>
  33. #include <pragmas/triton_pragmas.h>
  34.  
  35.  
  36. struct ExecBase *SysBase;
  37. struct Library *TritonBase;
  38. struct IntuitionBase *IntuitionBase;
  39.  
  40.  
  41. void __saveds __UserLibCleanup(void);
  42.  
  43.  
  44. int __saveds __asm __UserLibInit(void)
  45. {
  46.   SysBase=(*((struct ExecBase **)4));
  47.   if(!(IntuitionBase=(struct IntuitionBase *)OpenLibrary((STRPTR)("intuition.library"),0)))
  48.     { __UserLibCleanup(); return 1; }
  49.  
  50.   DisplayBeep(NULL);
  51.   return 0;
  52. }
  53.  
  54.  
  55. void __saveds __UserLibCleanup(void)
  56. {
  57.   CloseLibrary(TritonBase);
  58.   CloseLibrary((struct Library *)IntuitionBase);
  59. }
  60.  
  61.  
  62. BOOL __saveds __asm TRCL_Init(register __a1 struct TR_App *app)
  63. {
  64.   if(!(TritonBase=OpenLibrary((STRPTR)(TRITONNAME),0))) return FALSE;
  65.  
  66.   return TRUE;
  67. }
  68.  
  69. void * __saveds __asm TRCL_Info(register __d0 ULONG type)
  70. {
  71.   return NULL;
  72. }
  73.