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


Ignore:
Timestamp:
07/08/2017 05:56:38 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
60288f5
Parents:
342a56f
Message:

Prototypes for global function pointers. Consistent global types.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ram/vtyper.c

    r342a56f r0c834c5  
    3535extern  short   vtwcol;         /* vtyper window left column */
    3636
    37 extern  short   (*vt_adv)();    /* vtyper data cursor advance function */
    38 extern  short   (*vt_bsp)();    /* vtyper data cursor backspace function */
    39 extern  short   (*vt_cdn)();    /* vtyper data cursor down function */
    40 extern  short   (*vt_cup)();    /* vtyper data cursor up function */
    41 extern  short   (*vt_stop)();   /* vtyper exit function */
    42 extern  short   (*vt_dsp)();    /* vtyper display function */
     37extern  void    (*vt_adv)(void);
     38                                /* vtyper data cursor advance function */
     39extern  void    (*vt_bsp)(void);
     40                                /* vtyper data cursor backspace function */
     41extern  void    (*vt_cdn)(void);
     42                                /* vtyper data cursor down function */
     43extern  void    (*vt_cup)(void);
     44                                /* vtyper data cursor up function */
     45extern  void    (*vt_stop)(void);
     46                                /* vtyper exit function */
     47extern  void    (*vt_dsp)(unsigned *obj, unsigned fg, unsigned bg, short row, short col, char *buf);
     48                                /* vtyper display function */
    4349
    4450extern  unsigned *vtobj;        /* vtyper display object pointer */
Note: See TracChangeset for help on using the changeset viewer.