From 655ea577d2518ff3e2e5226f02836cae872321c1 Mon Sep 17 00:00:00 2001 From: Olaf Barthel Date: Wed, 10 Nov 2004 14:55:30 +0000 Subject: [PATCH] - Modified the amiga.lib Ext/StdIO functions to work well with the updated system header files. git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@14767 87f5fb63-7c3d-0410-a384-fd976d0f7a62 --- library/amiga_createextio.c | 8 +++++++- library/amiga_createstdio.c | 8 +++++++- library/amiga_deleteextio.c | 8 +++++++- library/amiga_deletestdio.c | 8 +++++++- 4 files changed, 28 insertions(+), 4 deletions(-) diff --git a/library/amiga_createextio.c b/library/amiga_createextio.c index 94b604e..e4b489d 100644 --- a/library/amiga_createextio.c +++ b/library/amiga_createextio.c @@ -1,5 +1,5 @@ /* - * $Id: amiga_createextio.c,v 1.1.1.1 2004-07-26 16:30:18 obarthel Exp $ + * $Id: amiga_createextio.c,v 1.2 2004-11-10 14:55:30 obarthel Exp $ * * :ts=4 * @@ -44,6 +44,12 @@ /****************************************************************************/ +#if defined(CreateExtIO) +#undef CreateExtIO +#endif /* CreateExtIO */ + +/****************************************************************************/ + struct IORequest * CreateExtIO(CONST struct MsgPort * port, LONG io_size) { diff --git a/library/amiga_createstdio.c b/library/amiga_createstdio.c index 2ea311d..30174fb 100644 --- a/library/amiga_createstdio.c +++ b/library/amiga_createstdio.c @@ -1,5 +1,5 @@ /* - * $Id: amiga_createstdio.c,v 1.1.1.1 2004-07-26 16:30:18 obarthel Exp $ + * $Id: amiga_createstdio.c,v 1.2 2004-11-10 14:55:30 obarthel Exp $ * * :ts=4 * @@ -44,6 +44,12 @@ /****************************************************************************/ +#if defined(CreateStdIO) +#undef CreateStdIO +#endif /* CreateStdIO */ + +/****************************************************************************/ + struct IOStdReq * CreateStdIO(CONST struct MsgPort * port) { diff --git a/library/amiga_deleteextio.c b/library/amiga_deleteextio.c index 40840b7..29f12ba 100644 --- a/library/amiga_deleteextio.c +++ b/library/amiga_deleteextio.c @@ -1,5 +1,5 @@ /* - * $Id: amiga_deleteextio.c,v 1.1.1.1 2004-07-26 16:30:18 obarthel Exp $ + * $Id: amiga_deleteextio.c,v 1.2 2004-11-10 14:55:30 obarthel Exp $ * * :ts=4 * @@ -44,6 +44,12 @@ /****************************************************************************/ +#if defined(DeleteExtIO) +#undef DeleteExtIO +#endif /* DeleteExtIO */ + +/****************************************************************************/ + VOID DeleteExtIO(struct IORequest * io) { diff --git a/library/amiga_deletestdio.c b/library/amiga_deletestdio.c index 747146c..06e69a6 100644 --- a/library/amiga_deletestdio.c +++ b/library/amiga_deletestdio.c @@ -1,5 +1,5 @@ /* - * $Id: amiga_deletestdio.c,v 1.1.1.1 2004-07-26 16:30:19 obarthel Exp $ + * $Id: amiga_deletestdio.c,v 1.2 2004-11-10 14:55:30 obarthel Exp $ * * :ts=4 * @@ -44,6 +44,12 @@ /****************************************************************************/ +#if defined(DeleteStdIO) +#undef DeleteStdIO +#endif /* DeleteStdIO */ + +/****************************************************************************/ + VOID DeleteStdIO(struct IOStdReq * io) {