home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / tos / updates / update18.zoo / gemlib / diffs
Encoding:
Text File  |  1992-03-22  |  4.9 KB  |  152 lines

  1. *** 1.15    1992/01/29 19:04:38
  2. --- Changelog    1992/03/23 01:38:38
  3. ***************
  4. *** 262,264 ****
  5. --- 262,273 ----
  6.     fix protos, and some types.
  7.   
  8.   ------------------------------- Patchlevel 21------------------------
  9. + vdibind.h:: ++jrb
  10. +     change all formal parameters named new to new_p (g++ complains
  11. +     (thinking its a new operator)).
  12. + vdiatrib.c, vdibind.h:: marcus nick
  13. +     the return type of vst_height should have been int, not void.
  14. + ------------------------------- Patchlevel 22------------------------
  15. *** 1.13    1992/01/29 19:04:38
  16. --- PatchLev.h    1992/03/23 01:38:39
  17. ***************
  18. *** 1,4 ****
  19. ! #define PatchLevel "21"
  20.   
  21.   /*
  22.    *    the Patch Level above is to identify the version
  23. --- 1,4 ----
  24. ! #define PatchLevel "22"
  25.   
  26.   /*
  27.    *    the Patch Level above is to identify the version
  28. *** 1.3    1991/07/23 22:28:02
  29. --- makefile.16    1992/03/23 01:38:42
  30. ***************
  31. *** 8,14 ****
  32.   LIB = d:\gnu\lib
  33.   
  34.   # common subset of options; no int size or omit-frame-pointer:
  35. ! COPTS= -O -I. -fcombine-regs -fstrength-reduce -DNDEBUG $(XFLAGS)
  36.   
  37.   # Base options CC; includes int size but not omit-frame-pointer
  38.   CFFLAGS = $(COPTS) -mshort
  39. --- 8,14 ----
  40.   LIB = d:\gnu\lib
  41.   
  42.   # common subset of options; no int size or omit-frame-pointer:
  43. ! COPTS= -O -I. -fstrength-reduce -DNDEBUG $(XFLAGS)
  44.   
  45.   # Base options CC; includes int size but not omit-frame-pointer
  46.   CFFLAGS = $(COPTS) -mshort
  47. *** 1.3    1991/07/23 22:28:02
  48. --- makefile.32    1992/03/23 01:38:42
  49. ***************
  50. *** 8,14 ****
  51.   LIB = d:\gnu\lib
  52.   
  53.   # common subset of options; no int size or omit-frame-pointer:
  54. ! COPTS= -O -I. -fcombine-regs -fstrength-reduce -DNDEBUG $(XFLAGS)
  55.   
  56.   # Base options CC; includes int size but not omit-frame-pointer
  57.   CFFLAGS = $(COPTS)
  58. --- 8,14 ----
  59.   LIB = d:\gnu\lib
  60.   
  61.   # common subset of options; no int size or omit-frame-pointer:
  62. ! COPTS= -O -I. -fstrength-reduce -DNDEBUG $(XFLAGS)
  63.   
  64.   # Base options CC; includes int size but not omit-frame-pointer
  65.   CFFLAGS = $(COPTS)
  66. *** 1.5    1991/09/06 02:10:31
  67. --- vdiatrib.c    1992/03/23 01:38:43
  68. ***************
  69. *** 26,31 ****
  70. --- 26,35 ----
  71.    *
  72.    *            ++jrb    bammi@cadence.com
  73.    *            modified: mj -- ntomczak@vm.ucs.ualberta.ca
  74. +  *
  75. +  * 92/03/10 mmn -- Markus_Nick@mz.maus.de
  76. +  *        changed return type of vst_height from void to int
  77. +  *        because vst_height returns the selected height
  78.    */
  79.   #include "common.h"
  80.   
  81. ***************
  82. *** 195,201 ****
  83.   /* vst_height    set text height (baseline to top of char cell)
  84.    * returns void (char info args)
  85.    */
  86. ! void vst_height(int handle, int height,
  87.           int *charw, int *charh, int *cellw, int *cellh)
  88.   {
  89.       _ptsin[0] = 0;
  90. --- 199,205 ----
  91.   /* vst_height    set text height (baseline to top of char cell)
  92.    * returns void (char info args)
  93.    */
  94. ! int vst_height(int handle, int height,
  95.           int *charw, int *charh, int *cellw, int *cellh)
  96.   {
  97.       _ptsin[0] = 0;
  98. ***************
  99. *** 206,211 ****
  100. --- 210,217 ----
  101.       *charh = _ptsout[1];
  102.       *cellw = _ptsout[2];
  103.       *cellh = _ptsout[3];
  104. +     return (int)_intout[0];        /* mmn */
  105.   }    
  106.   #endif /* L_vst_heig */
  107.   
  108. *** 1.10    1992/01/29 19:04:38
  109. --- vdibind.h    1992/03/23 01:38:43
  110. ***************
  111. *** 23,29 ****
  112.   __EXTERN int     vsm_type __PROTO((int handle, int symbol));
  113.   __EXTERN void     vsm_height __PROTO((int handle, int height));
  114.   __EXTERN int     vsm_color __PROTO((int handle, int index));
  115. ! __EXTERN void     vst_height __PROTO((int handle, int height, int *charw,
  116.                        int *charh, int *cellw, int *cellh));
  117.   __EXTERN int     vst_point __PROTO((int handle, int point, int *charw,
  118.                       int *charh, int *cellw, int *cellh));
  119. --- 23,29 ----
  120.   __EXTERN int     vsm_type __PROTO((int handle, int symbol));
  121.   __EXTERN void     vsm_height __PROTO((int handle, int height));
  122.   __EXTERN int     vsm_color __PROTO((int handle, int index));
  123. ! __EXTERN int      vst_height __PROTO((int handle, int height, int *charw,
  124.                        int *charh, int *cellw, int *cellh));
  125.   __EXTERN int     vst_point __PROTO((int handle, int point, int *charw,
  126.                       int *charh, int *cellw, int *cellh));
  127. ***************
  128. *** 91,99 ****
  129.   __EXTERN void     v_show_c __PROTO((int handle, int reset));
  130.   __EXTERN void     v_hide_c __PROTO((int handle));
  131.   __EXTERN void      vq_mouse __PROTO((int handle, int *pstatus, int *x, int *y));
  132. ! __EXTERN void     vex_butv __PROTO((int handle, void *new, void **old));
  133. ! __EXTERN void     vex_motv __PROTO((int handle, void *new, void **old));
  134. ! __EXTERN void     vex_curv __PROTO((int handle, void *new, void **old));
  135.   __EXTERN void     vq_key_s __PROTO((int handle, int *state));
  136.   
  137.   
  138. --- 91,99 ----
  139.   __EXTERN void     v_show_c __PROTO((int handle, int reset));
  140.   __EXTERN void     v_hide_c __PROTO((int handle));
  141.   __EXTERN void      vq_mouse __PROTO((int handle, int *pstatus, int *x, int *y));
  142. ! __EXTERN void     vex_butv __PROTO((int handle, void *new_p, void **old));
  143. ! __EXTERN void     vex_motv __PROTO((int handle, void *new_p, void **old));
  144. ! __EXTERN void     vex_curv __PROTO((int handle, void *new_p, void **old));
  145.   __EXTERN void     vq_key_s __PROTO((int handle, int *state));
  146.   
  147.   
  148.