/* ** (c) COPYRIGHT MIT 1995. ** Please first read the full copyright statement in the file COPYRIGH. */This module defines the global variables etc. for the Line Mode Browser. The module is implemented by HTBrowse.c, and it is a part of the Line Mode Browser.
#ifndef HTBROWSE_H #define HTBROWSE_H extern int HTScreenWidth; extern int HTScreenHeight; /* Anchor specific information */ extern BOOL display_anchors; /* Show anchors in text? */ extern char * start_reference; /* Format for start anchor */ extern char * end_reference; /* for end anchor */ extern char * reference_mark; /* for reference lists */ extern char * end_mark; /* Format string for [End] */ /* TTYPrint - EGP */ #if WWWTRACE_MODE == WWWTRACE_TTY #define STDOUT 1 #define OUTPUT 2 /* used in TTYPrint's switch for output multiplexing */ #else #define STDOUT stdout #define OUTPUT output /* output is a global target for output redirection */ #endif /* WWWTRACE_TTY */ #endif /* HTBROWSE_H */ /* for access to windows app's windows procedures */ typedef int InputParser_t (char* buf, SOCKET s, HTRequest * req, SockOps ops); extern InputParser_t * PInputParser; PUBLIC int bufferInput (char* buf, int len, SOCKET s, HTRequest * req, SockOps ops);End of HTBrowse Declaration