home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 3 / AACD03.BIN / AACD / Programming / Triton / Developer / LibSource / Stubs.c < prev    next >
C/C++ Source or Header  |  1998-02-03  |  2KB  |  40 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.  */
  20.  
  21.  
  22. #include "triton_lib.h"
  23.  
  24.  
  25. struct TR_App * __stdargs TR_CreateAppTags(ULONG taglist,...)
  26.   { return TR_CreateApp((struct TagItem *)&taglist); }
  27.  
  28. struct TR_Project * __stdargs TR_OpenProjectTags(struct TR_App *app, ULONG taglist,...)
  29.   { return TR_OpenProject(app, (struct TagItem *)&taglist); }
  30.  
  31. ULONG TR_EasyRequestTags(struct TR_App *app, STRPTR bodyfmt, STRPTR gadfmt, ULONG taglist,...)
  32.   { return TR_EasyRequest(app, bodyfmt, gadfmt, (struct TagItem *)&taglist); }
  33.  
  34. ULONG TR_AutoRequestTags(struct TR_App *app, struct TR_Project *lockproject, ULONG taglist,...)
  35.   { return TR_AutoRequest(app, lockproject, (struct TagItem *)&taglist); }
  36.  
  37. BOOL TR_AddClassTags(struct TR_App *app, ULONG tag, ULONG superTag, TR_Method defaultMethod, ULONG datasize,
  38.              ULONG taglist,...)
  39.   { return TR_AddClass(app, tag, superTag, defaultMethod, datasize, (struct TagItem *)&taglist); }
  40.