Don't copy DirectoryOpus.CFG because that file works
[AROS-Contrib.git] / dopus / Program / dummy_asyncio.c
blobf73dfe46372a87d3dc3a3c321d094f2ed78967e8
1 /* AROS: This is dummy implementation for the asyncio library just to prevent
2 linker errors */
3 #warning We should port the real asyncio.lib
6 #include "dopus.h"
7 #include "asyncio.h"
10 struct AsyncFile *OpenAsync(const STRPTR fileName, UBYTE accessMode, LONG bufferSize)
12 return NULL;
15 LONG ReadAsync(struct AsyncFile *file, APTR buffer, LONG numBytes)
17 return 0;
20 LONG CloseAsync(struct AsyncFile *file)
22 return 0;