Changeset 0170798 in buchla-68k for ram/swinit.c


Ignore:
Timestamp:
07/11/2017 05:46:49 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
4d04f41
Parents:
7af8be4
Message:

Added last missing function pointer prototypes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ram/swinit.c

    r7af8be4 r0170798  
    3535void    (*premove)(void);       /* cursor pre-move function */
    3636void    (*pstmove)(void);       /* cursor post-move function */
    37 void    (*vt_adv)(void);        /* vtyper data cursor advance function */
    38 void    (*vt_bsp)(void);        /* vtyper data cursor backspace function */
    39 void    (*vt_cdn)(void);        /* vtyper data cursor down function */
    40 void    (*vt_cup)(void);        /* vtyper data cursor up function */
    41 void    (*vt_dsp)(uint16_t *obj, uint16_t fg, uint16_t bg, int16_t row, int16_t col, int8_t *buf);
    42                                 /* vtyper display function */
    43 void    (*vt_stop)(void);       /* vtyper exit function */
     37vtcurs  vt_adv;                 /* vtyper data cursor advance function */
     38vtcurs  vt_bsp;                 /* vtyper data cursor backspace function */
     39vtcurs  vt_cdn;                 /* vtyper data cursor down function */
     40vtcurs  vt_cup;                 /* vtyper data cursor up function */
     41vtchar  vt_dsp;                 /* vtyper display function */
     42vtcurs  vt_stop;                /* vtyper exit function */
    4443void    (*x_key)(void);         /* X key processor */
    4544void    (*xy_dn)(void);         /* cursor - finger on (down) */
Note: See TracChangeset for help on using the changeset viewer.