#ifndef _INC_DUALMODE #define _INC_DUALMODE int rmsetup(); int dmlopen(char *b,int m); int dmlclose(int f); int dmlcreat(char *b,int m); int dmdelete(char *b); int dmrename(char *b,char *b2); int dmdup(int f); int dmdup2(int f,int f2); int dmmkdir(char *b); int dmrmdir(char *b); int dmchdir(char *b); int dmread(int f,char *b,int l); int dmwrite(int f,char *b,int l); int dmlread(int f,char *b,int l); int dmlwrite(int f,char *b,int l); int dmlseek(int f,int o,int m); int dmprintf(char *s,...); void *dmmalloc(unsigned long l); void *dmcalloc(unsigned long l,unsigned long s); void dmfree(void *l); void dmexit(int i); #endif