/*
 * LIBDDX.H - This is for version 1.00b of the LIBDDX.LIB file.
 *
 * by Mario.  (c)1996 Datel Design & Development, UK.
 *
 * All these functions use the same paramaters as their MS-DOS based versions.
 * Look up the functions and their required paramaters from any DOS manual.
 *
 */

int DDXinit (void);
int DDXcreate (char *name, int attrib);
int DDXopen (char *name, int mode);
int DDXclose (int fd);
int DDXread (int fd, char *buff, int len);
int DDXwrite (int fd, char *buff, int len);
int DDXlseek (int fd, int offset, int mode);
int DDXpollhost (void);
void DDXputchar (char c);

