Changeset 60288f5 in buchla-68k for include


Ignore:
Timestamp:
07/09/2017 12:23:40 AM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
6dd74a9
Parents:
0c834c5
Message:

Make function pointers more consistent.

Location:
include
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • include/configs.h

    r0c834c5 r60288f5  
    731731char    *cfgptr[MAXCFG] = {
    732732
    733         cfg_00, cfg_01, cfg_02, cfg_03, cfg_04,
    734         cfg_05, cfg_06, cfg_07, cfg_08, cfg_09,
    735         cfg_10, cfg_11
    736 };
     733        (char *)cfg_00, (char *)cfg_01, (char *)cfg_02, (char *)cfg_03,
     734        (char *)cfg_04, (char *)cfg_05, (char *)cfg_06, (char *)cfg_07,
     735        (char *)cfg_08, (char *)cfg_09, (char *)cfg_10, (char *)cfg_11
     736};
  • include/curpak.h

    r0c834c5 r60288f5  
    3232        void            (*e_key)(void);
    3333        void            (*m_key)(void);
    34         void            (*d_key)(void);
    35         void            (*not_fld)(short k);
     34        void            (*d_key)(short k);
     35        short           (*not_fld)(short k);
    3636        struct fet      *curfet;
    3737        struct selbox   *csbp;
  • include/fields.h

    r0c834c5 r60288f5  
    1414        short   frcol;          /* rightmost column of field */
    1515        short   ftags;          /* field tags / parameters (used variously) */
    16         void    (*ebto)(short ftags);
     16        short   (*ebto)(short n);
    1717                                /* edit buffer 'to' (setup) function */
    18         void    (*ebfrom)(short ftags);
     18        short   (*ebfrom)(short n);
    1919                                /* edit buffer 'from' (parse) function */
    20         void    (*redisp)(short ftags);
     20        short   (*redisp)(short nn);
    2121                                /* field (re)display function */
    22         void    (*datain)(short ftags, short asig);
     22        short   (*datain)(short nn, short k);
    2323                                /* data entry function */
    2424};
     
    3131        short   sbymax;         /* maximum y - bottom edge of box */
    3232        short   sbarg;          /* select box argument */
    33         void    (*boxhit)(short sbarg);
     33        short   (*boxhit)(short n);
    3434                                /* box-hit function */
    3535};
  • include/midas.h

    r0c834c5 r60288f5  
    88*/
    99
    10 typedef short   (*PFS)();       /* pointer to a function returning a short */
     10typedef void    (*LPF)(short _1, short _2);     /* pointer to a LCD panel function */
    1111
    1212#define SM_SCALE(x)     (((x) * 252) & 0x7FE0)
Note: See TracChangeset for help on using the changeset viewer.