diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2012-02-20 01:32:18 -0500 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2012-02-20 01:32:18 -0500 |
commit | bb5fd6e44e480f571bcb713788cc50eea44095e5 (patch) | |
tree | dc3b9975b9bf9e18ce454348ab31ae232a372107 /WWW/Library/Implementation/HTDOS.h | |
parent | 3e8c172cd64e8a34029b60208c0d3016d3609505 (diff) | |
download | lynx-snapshots-bb5fd6e44e480f571bcb713788cc50eea44095e5.tar.gz |
snapshot of project "lynx", label v2-8-8dev_10b
Diffstat (limited to 'WWW/Library/Implementation/HTDOS.h')
-rw-r--r-- | WWW/Library/Implementation/HTDOS.h | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/WWW/Library/Implementation/HTDOS.h b/WWW/Library/Implementation/HTDOS.h deleted file mode 100644 index e1613cb0..00000000 --- a/WWW/Library/Implementation/HTDOS.h +++ /dev/null @@ -1,56 +0,0 @@ -/* - * $LynxId: HTDOS.h,v 1.14 2009/09/09 00:16:06 tom Exp $ - * - * DOS specific routines - */ - -#ifndef HTDOS_H -#define HTDOS_H - -#ifndef HTUTILS_H -#include <HTUtils.h> -#endif /* HTUTILS_H */ - -/* PUBLIC HTDOS_wwwName() - * CONVERTS DOS Name into WWW Name - * ON ENTRY: - * dosname DOS file specification (NO NODE) - * - * ON EXIT: - * returns WWW file specification - * - */ -const char *HTDOS_wwwName(const char *dosname); - -/* - * Converts Unix slashes to DOS - */ -char *HTDOS_slashes(char *path); - -/* PUBLIC HTDOS_name() - * CONVERTS WWW name into a DOS name - * ON ENTRY: - * wwwname WWW file name - * - * ON EXIT: - * returns DOS file specification - * - * Bug: Returns pointer to static -- non-reentrant - */ -char *HTDOS_name(const char *wwwname); - -#ifdef WIN_EX -char *HTDOS_short_name(const char *fn); - -#else -#define HTDOS_short_name(fn) fn -#endif - -#ifdef DJGPP -/* - * Poll tcp/ip lib and yield to DPMI-host while nothing in - * keyboard buffer (head = tail) (simpler than kbhit). - */ -void djgpp_idle_loop(void); -#endif -#endif /* HTDOS_H */ |