Changeset b28a12e in buchla-68k for ram/vtyper.c


Ignore:
Timestamp:
07/10/2017 02:17:49 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
06f6615
Parents:
39a696b
Message:

Zero redundant declarations.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ram/vtyper.c

    r39a696b rb28a12e  
    66*/
    77
    8 #include "all.h"
    9 
    10 extern  uint16_t        exp_c(uint16_t c);
    11 
    12 extern  void ttcpos(int16_t row, int16_t col);
    13 
    14 extern  int16_t cxrate;         /* data entry cursor x (col) update increment */
    15 extern  int16_t cyrate;         /* data entry cursor y (row) update increment */
    16 extern  int16_t stccol;         /* data entry text cursor column */
    17 extern  int16_t stcrow;         /* data entry text cursor row */
    18 extern  int16_t vtccol;         /* vtyper cursor column */
    19 extern  int16_t vtcrow;         /* vtyper cursor row */
    20 extern  int16_t vtdecol;        /* vtyper data entry column */
    21 extern  int16_t vtxval;         /* vtyper cursor x value */
    22 extern  int16_t vtyval;         /* vtyper cursor y value */
    23 
    24 extern  int8_t  *vtdeptr;       /* vtyper data entry pointer */
    25 
    26 extern  int8_t  vtdechr;        /* vtyper data entry character */
    27 
    28 extern  int8_t  bfs[];          /* display string buffer */
    29 
    30 extern  int16_t vtwrow;         /* vtyper window top row */
    31 extern  int16_t vtwcol;         /* vtyper window left column */
    32 
    33 extern  void    (*vt_adv)(void);
    34                                 /* vtyper data cursor advance function */
    35 extern  void    (*vt_bsp)(void);
    36                                 /* vtyper data cursor backspace function */
    37 extern  void    (*vt_cdn)(void);
    38                                 /* vtyper data cursor down function */
    39 extern  void    (*vt_cup)(void);
    40                                 /* vtyper data cursor up function */
    41 extern  void    (*vt_stop)(void);
    42                                 /* vtyper exit function */
    43 extern  void    (*vt_dsp)(uint16_t *obj, uint16_t fg, uint16_t bg, int16_t row, int16_t col, int8_t *buf);
    44                                 /* vtyper display function */
    45 
    46 extern  uint16_t *vtobj;        /* vtyper display object pointer */
    47 extern  uint16_t vtfgval;       /* vtyper data foreground color */
    48 extern  uint16_t vtbgval;       /* vtyper data background color */
     8#include "ram.h"
    499
    5010/* virtual typewriter display line constants */
Note: See TracChangeset for help on using the changeset viewer.