diff options
Diffstat (limited to '')
-rw-r--r-- | proto.h | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -1,4 +1,4 @@ -/* $Id: proto.h,v 1.83 2003/01/22 16:10:28 ukai Exp $ */ +/* $Id: proto.h,v 1.84 2003/01/23 18:37:21 ukai Exp $ */ /* * This file was automatically generated by version 1.7 of cextract. * Manual editing not recommended. @@ -92,6 +92,7 @@ extern void peekIMG(void); extern void curURL(void); extern void vwSrc(void); extern void reload(void); +extern void reshape(void); extern void chkURL(void); extern void chkURLBuffer(Buffer *buf); extern void chkWORD(void); @@ -224,7 +225,7 @@ extern Buffer *loadBuffer(URLFile *uf, Buffer *newBuf); #ifdef USE_IMAGE extern Buffer *loadImageBuffer(URLFile *uf, Buffer *newBuf); #endif -extern void saveBuffer(Buffer *buf, FILE * f); +extern void saveBuffer(Buffer *buf, FILE * f, int cont); extern Buffer *getshell(char *cmd); extern Buffer *getpipe(char *cmd); extern Buffer *openPagerBuffer(InputStream stream, Buffer *buf); @@ -286,7 +287,9 @@ extern void disp_message_nomouse(char *s, int redraw_current); #define disp_message_nomouse disp_message #endif extern void set_delayed_message(char *s); +extern void cursorUp0(Buffer *buf, int n); extern void cursorUp(Buffer *buf, int n); +extern void cursorDown0(Buffer *buf, int n); extern void cursorDown(Buffer *buf, int n); extern void cursorUpDown(Buffer *buf, int n); extern void cursorRight(Buffer *buf, int n); @@ -301,11 +304,11 @@ extern int columnPos(Line *line, int column); extern Line *lineSkip(Buffer *buf, Line *line, int offset, int last); extern Line *currentLineSkip(Buffer *buf, Line *line, int offset, int last); extern int gethtmlcmd(char **s); -extern Str checkType(Str s, Lineprop *oprop, +extern Str checkType(Str s, Lineprop **oprop #ifdef USE_ANSI_COLOR - Linecolor *ocolor, int *check_color, + , Linecolor **ocolor #endif - int len); + ); extern int calcPosition(char *l, Lineprop *pr, int len, int pos, int bpos, int mode); extern char *lastFileName(char *path); |