home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 9 Archive / 09-Archive.zip / zip22.zip / qdos / osdep.h < prev    next >
C/C++ Source or Header  |  1997-03-08  |  494b  |  25 lines

  1. #ifndef _QDOS_OPDEP
  2. #define _QDOS_OPDEP
  3.  
  4. #include <stdlib.h>
  5. #include <sys/stat.h>
  6. #include <fcntl.h>
  7. #include <string.h>
  8. #include <ctype.h>
  9.  
  10. char * ql2Unix(char *);
  11. char * Unix2ql(char *, char **);
  12. int wild (char *);
  13. char *LastDir(char *);
  14. void QDOSexit(void);
  15. short devlen(char *);
  16.  
  17. /*
  18.  * XXX NO_RENAME instead of the following define ?
  19.  */
  20. #define link rename
  21. #define USE_CASE_MAP
  22. #define USE_EF_UT_TIME
  23. #define PROCNAME(n) (action == ADD || action == UPDATE ? wild(n) : procname(n))
  24. #endif
  25.