home *** CD-ROM | disk | FTP | other *** search
- *** 1.15 1992/01/29 19:04:38
- --- Changelog 1992/03/23 01:38:38
- ***************
- *** 262,264 ****
- --- 262,273 ----
- fix protos, and some types.
-
- ------------------------------- Patchlevel 21------------------------
- +
- + vdibind.h:: ++jrb
- + change all formal parameters named new to new_p (g++ complains
- + (thinking its a new operator)).
- +
- + vdiatrib.c, vdibind.h:: marcus nick
- + the return type of vst_height should have been int, not void.
- +
- + ------------------------------- Patchlevel 22------------------------
- *** 1.13 1992/01/29 19:04:38
- --- PatchLev.h 1992/03/23 01:38:39
- ***************
- *** 1,4 ****
- ! #define PatchLevel "21"
-
- /*
- * the Patch Level above is to identify the version
- --- 1,4 ----
- ! #define PatchLevel "22"
-
- /*
- * the Patch Level above is to identify the version
- *** 1.3 1991/07/23 22:28:02
- --- makefile.16 1992/03/23 01:38:42
- ***************
- *** 8,14 ****
- LIB = d:\gnu\lib
-
- # common subset of options; no int size or omit-frame-pointer:
- ! COPTS= -O -I. -fcombine-regs -fstrength-reduce -DNDEBUG $(XFLAGS)
-
- # Base options CC; includes int size but not omit-frame-pointer
- CFFLAGS = $(COPTS) -mshort
- --- 8,14 ----
- LIB = d:\gnu\lib
-
- # common subset of options; no int size or omit-frame-pointer:
- ! COPTS= -O -I. -fstrength-reduce -DNDEBUG $(XFLAGS)
-
- # Base options CC; includes int size but not omit-frame-pointer
- CFFLAGS = $(COPTS) -mshort
- *** 1.3 1991/07/23 22:28:02
- --- makefile.32 1992/03/23 01:38:42
- ***************
- *** 8,14 ****
- LIB = d:\gnu\lib
-
- # common subset of options; no int size or omit-frame-pointer:
- ! COPTS= -O -I. -fcombine-regs -fstrength-reduce -DNDEBUG $(XFLAGS)
-
- # Base options CC; includes int size but not omit-frame-pointer
- CFFLAGS = $(COPTS)
- --- 8,14 ----
- LIB = d:\gnu\lib
-
- # common subset of options; no int size or omit-frame-pointer:
- ! COPTS= -O -I. -fstrength-reduce -DNDEBUG $(XFLAGS)
-
- # Base options CC; includes int size but not omit-frame-pointer
- CFFLAGS = $(COPTS)
- *** 1.5 1991/09/06 02:10:31
- --- vdiatrib.c 1992/03/23 01:38:43
- ***************
- *** 26,31 ****
- --- 26,35 ----
- *
- * ++jrb bammi@cadence.com
- * modified: mj -- ntomczak@vm.ucs.ualberta.ca
- + *
- + * 92/03/10 mmn -- Markus_Nick@mz.maus.de
- + * changed return type of vst_height from void to int
- + * because vst_height returns the selected height
- */
- #include "common.h"
-
- ***************
- *** 195,201 ****
- /* vst_height set text height (baseline to top of char cell)
- * returns void (char info args)
- */
- ! void vst_height(int handle, int height,
- int *charw, int *charh, int *cellw, int *cellh)
- {
- _ptsin[0] = 0;
- --- 199,205 ----
- /* vst_height set text height (baseline to top of char cell)
- * returns void (char info args)
- */
- ! int vst_height(int handle, int height,
- int *charw, int *charh, int *cellw, int *cellh)
- {
- _ptsin[0] = 0;
- ***************
- *** 206,211 ****
- --- 210,217 ----
- *charh = _ptsout[1];
- *cellw = _ptsout[2];
- *cellh = _ptsout[3];
- +
- + return (int)_intout[0]; /* mmn */
- }
- #endif /* L_vst_heig */
-
- *** 1.10 1992/01/29 19:04:38
- --- vdibind.h 1992/03/23 01:38:43
- ***************
- *** 23,29 ****
- __EXTERN int vsm_type __PROTO((int handle, int symbol));
- __EXTERN void vsm_height __PROTO((int handle, int height));
- __EXTERN int vsm_color __PROTO((int handle, int index));
- ! __EXTERN void vst_height __PROTO((int handle, int height, int *charw,
- int *charh, int *cellw, int *cellh));
- __EXTERN int vst_point __PROTO((int handle, int point, int *charw,
- int *charh, int *cellw, int *cellh));
- --- 23,29 ----
- __EXTERN int vsm_type __PROTO((int handle, int symbol));
- __EXTERN void vsm_height __PROTO((int handle, int height));
- __EXTERN int vsm_color __PROTO((int handle, int index));
- ! __EXTERN int vst_height __PROTO((int handle, int height, int *charw,
- int *charh, int *cellw, int *cellh));
- __EXTERN int vst_point __PROTO((int handle, int point, int *charw,
- int *charh, int *cellw, int *cellh));
- ***************
- *** 91,99 ****
- __EXTERN void v_show_c __PROTO((int handle, int reset));
- __EXTERN void v_hide_c __PROTO((int handle));
- __EXTERN void vq_mouse __PROTO((int handle, int *pstatus, int *x, int *y));
- ! __EXTERN void vex_butv __PROTO((int handle, void *new, void **old));
- ! __EXTERN void vex_motv __PROTO((int handle, void *new, void **old));
- ! __EXTERN void vex_curv __PROTO((int handle, void *new, void **old));
- __EXTERN void vq_key_s __PROTO((int handle, int *state));
-
-
- --- 91,99 ----
- __EXTERN void v_show_c __PROTO((int handle, int reset));
- __EXTERN void v_hide_c __PROTO((int handle));
- __EXTERN void vq_mouse __PROTO((int handle, int *pstatus, int *x, int *y));
- ! __EXTERN void vex_butv __PROTO((int handle, void *new_p, void **old));
- ! __EXTERN void vex_motv __PROTO((int handle, void *new_p, void **old));
- ! __EXTERN void vex_curv __PROTO((int handle, void *new_p, void **old));
- __EXTERN void vq_key_s __PROTO((int handle, int *state));
-
-
-