Changeset 7258c6a in buchla-68k for include/curpak.h


Ignore:
Timestamp:
07/09/2017 04:45:34 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
8618599
Parents:
0292fbb
Message:

Use standard integer types.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • include/curpak.h

    r0292fbb r7258c6a  
    2020struct curpak {
    2121
    22         short           (*curtype)(void);
     22        int16_t         (*curtype)(void);
    2323        void            (*premove)(void);
    2424        void            (*pstmove)(void);
     
    3232        void            (*e_key)(void);
    3333        void            (*m_key)(void);
    34         void            (*d_key)(short k);
    35         short           (*not_fld)(short k);
     34        void            (*d_key)(int16_t k);
     35        int16_t         (*not_fld)(int16_t k);
    3636        struct fet      *curfet;
    3737        struct selbox   *csbp;
    38         short           *cratex;
    39         short           *cratey;
    40         short           cmtype;
    41         short           cxval;
    42         short           cyval;
     38        int16_t         *cratex;
     39        int16_t         *cratey;
     40        int16_t         cmtype;
     41        int16_t         cxval;
     42        int16_t         cyval;
    4343};
     44
Note: See TracChangeset for help on using the changeset viewer.