diff options
Diffstat (limited to 'src/HTAlert.h')
-rw-r--r-- | src/HTAlert.h | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/src/HTAlert.h b/src/HTAlert.h index 334843db..b35267b6 100644 --- a/src/HTAlert.h +++ b/src/HTAlert.h @@ -1,3 +1,5 @@ +/* */ + /* Displaying messages and getting input for WWW Library ** ===================================================== ** @@ -5,10 +7,10 @@ ** Feb 93 Portablized etc TBL */ -#ifndef HTALERT_H -#define HTALERT_H 1 - +#ifndef HTUTILS_H #include <HTUtils.h> +#endif /* HTUTILS_H */ +#include <tcp.h> /* Display a message and get the input ** @@ -27,9 +29,6 @@ extern char * HTPrompt PARAMS((CONST char * Msg, CONST char * deflt)); ** The input is a list of parameters for printf. */ extern void HTAlert PARAMS((CONST char * Msg)); -extern void HTInfoMsg PARAMS((CONST char * Msg)); -extern void HTUserMsg PARAMS((CONST char * Msg)); -extern void HTUserMsg2 PARAMS((CONST char * Msg, CONST char * Arg)); /* Display a progress message for information (and diagnostics) only @@ -38,7 +37,7 @@ extern void HTUserMsg2 PARAMS((CONST char * Msg, CONST char * Arg)); ** The input is a list of parameters for printf. */ extern void HTProgress PARAMS((CONST char * Msg)); -extern void HTReadProgress PARAMS((long bytes, long total)); +extern BOOLEAN mustshow; #define _HTProgress(msg) mustshow = TRUE, HTProgress(msg) /* @@ -108,6 +107,8 @@ extern void HTPromptUsernameAndPassword PARAMS(( extern BOOL HTConfirmCookie PARAMS(( void * dp, CONST char * server, + CONST char * domain, + CONST char * path, CONST char * name, CONST char * value)); @@ -127,4 +128,6 @@ extern int HTConfirmPostRedirect PARAMS(( CONST char * Redirecting_url, int server_status)); -#endif /* HTALERT_H */ +/* + + */ |