remove the second -lssl in the generated Makefile so that it doesn't break the build.
[AROS-Contrib.git] / dopus / Program / pools.h
blob2165f054a3c198cba40c48602e908765b913c40c
1 /*
3 Directory Opus 4
4 Original GPL release version 4.12
5 Copyright 1993-2000 Jonathan Potter
7 This program is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public License
9 as published by the Free Software Foundation; either version 2
10 of the License, or (at your option) any later version.
12 This program 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
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 All users of Directory Opus 4 (including versions distributed
22 under the GPL) are entitled to upgrade to the latest version of
23 Directory Opus version 5 at a reduced price. Please see
24 http://www.gpsoft.com.au for more information.
26 The release of Directory Opus 4 under the GPL in NO WAY affects
27 the existing commercial status of Directory Opus 5.
32 void * AsmCreatePool(register ULONG __asm("d0"),register ULONG __asm("d1"),register ULONG __asm("d2"),register struct ExecBase * __asm("a6"));
33 void AsmDeletePool(register void * __asm("a0"),register struct ExecBase * __asm("a6"));
34 void * AsmAllocPooled(register void * __asm("a0"),register ULONG __asm("d0"),register struct ExecBase * __asm("a6"));
35 void AsmFreePooled(register void * __asm("a0"),register void * __asm("a1"),register ULONG __asm("d0"),register struct ExecBase * __asm("a6"));
37 #define CreatePool(x,y,z) AsmCreatePool(x,y,z,(struct ExecBase *)SysBase)
38 #define DeletePool(x) AsmDeletePool(x,(struct ExecBase *)SysBase)
39 #define AllocPooled(x,y) AsmAllocPooled(x,y,(struct ExecBase *)SysBase)
40 #define FreePooled(x,y,z) AsmFreePooled(x,y,z,(struct ExecBase *)SysBase)
42 #define LibCreatePool(x,y,z) AsmCreatePool(x,y,z,(struct ExecBase *)SysBase)
43 #define LibDeletePool(x) AsmDeletePool(x,(struct ExecBase *)SysBase)
44 #define LibAllocPooled(x,y) AsmAllocPooled(x,y,(struct ExecBase *)SysBase)
45 #define LibFreePooled(x,y,z) AsmFreePooled(x,y,z,(struct ExecBase *)SysBase)
48 #include <proto/exec.h>
50 #define LibCreatePool(x,y,z) CreatePool(x,y,z)
51 #define LibDeletePool(x) DeletePool(x)
52 #define LibAllocPooled(x,y) AllocPooled(x,y)
53 #define LibFreePooled(x,y,z) FreePooled(x,y,z)