Merging NList MCC 0.119 into the main branch.
[AROS.git] / workbench / classes / zune / nlist / nlisttree_mcc / vastubs.c
blob5007b0d3d769a3687c889b090d01dc7de9e1eb08
1 /***************************************************************************
3 NListtree.mcc - New Listtree MUI Custom Class
4 Copyright (C) 1999-2001 by Carsten Scholling
5 Copyright (C) 2001-2014 NList Open Source Team
7 This library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Lesser General Public
9 License as published by the Free Software Foundation; either
10 version 2.1 of the License, or (at your option) any later version.
12 This library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Lesser General Public License for more details.
17 NList classes Support Site: http://www.sf.net/projects/nlist-classes
19 $Id$
21 ***************************************************************************/
23 #if !defined(__AROS__) && (defined(__VBCC__) || defined(NO_INLINE_STDARG))
24 #if defined(_M68000) || defined(__M68000) || defined(__mc68000)
26 #include <exec/types.h>
28 /* FIX V45 breakage... */
29 #if INCLUDE_VERSION < 45
30 #define MY_CONST_STRPTR CONST_STRPTR
31 #else
32 #define MY_CONST_STRPTR CONST STRPTR
33 #endif
35 #include <proto/intuition.h>
37 APTR NewObject( struct IClass *classPtr, CONST_STRPTR classID, Tag tag1, ... )
38 { return NewObjectA(classPtr, classID, (struct TagItem *)&tag1); }
39 ULONG SetAttrs( APTR object, ULONG tag1, ... )
40 { return SetAttrsA(object, (struct TagItem *)&tag1); }
41 LONG EasyRequest( struct Window *window, CONST struct EasyStruct *easyStruct, ULONG *idcmpPtr, ... )
42 { return EasyRequestArgs(window, easyStruct, idcmpPtr, (const APTR) ((ULONG) &idcmpPtr + sizeof(ULONG *))); }
44 #include <proto/dos.h>
45 struct Process *CreateNewProcTags( ULONG tag1, ... )
46 { return CreateNewProc((struct TagItem *)&tag1); }
48 #else
49 #error "VARGS stubs are only save on m68k systems!"
50 #endif
51 #endif