Changeset 0580615 in buchla-68k for include/vsddsw.h


Ignore:
Timestamp:
07/08/2017 02:42:31 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
342a56f
Parents:
46d8069
Message:

Point of no return.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • include/vsddsw.h

    r46d8069 r0580615  
    99/* functions */
    1010
    11 extern  unsigned        vbank();
    12 extern  int     vputp(), vwputp();
     11extern  void    vbank(unsigned b);
     12extern  void    vputp(struct octent *octad, int xloc, int yloc, int val);
     13extern  void    vwputp(struct octent *octad, int xloc, int yloc, int val);
    1314
    1415/* these should be voids ... */
    1516
    16 extern  int     vfwait(), vputs(), vputsa(), vputc(), VHinit();
    17 extern  int     objclr(), objon(), objoff();
    18 extern  int     vcputs(), vwputs(), vwputm(), vmput(), vmputa(), VSinit();
    19 extern  int     SelObj(), SetPri(), SetObj(), CpyObj();
     17extern  void    vfwait(void);
     18extern  void    vputs(uint *sbase, uint row, uint col, uint attrib, char *str);
     19extern  void    vputsa(uint *sbase, uint row, uint col, uint *attrib, char *str);
     20extern  void    vputc(unsigned *sbase, unsigned row, unsigned col, unsigned c, unsigned attrib);
     21extern  void    VHinit(void);
     22extern  void    objclr(unsigned obj);
     23extern  void    objon(unsigned obj, unsigned line, unsigned num);
     24extern  void    objoff(unsigned obj, unsigned line, unsigned num);
     25extern  void    vcputs(int *obase, int nw, int fg, int bg, int row, int col, char *str);
     26extern  void    vwputs(int *obase, int nw, int fg, int bg, int row, int col, char *str);
     27extern  void    vwputm(unsigned int *obase, int nw, int fg, int bg, int row, int col, char *ml[]);
     28extern  void    vmput(uint *sbase, uint row, uint col, uint ma, char *ms[]);
     29extern  void    vmputa(uint *sbase, uint row, uint col, uint *ma[], char *ms[]);
     30extern  void    VSinit(void);
     31extern  void    SelObj(int obj);
     32extern  void    SetPri(int obj, int pri);
     33extern  void    SetObj(int obj, int type, int bank, int xpix, int ypix, int x0, int y0, int flags, int pri, unsigned int *base);
     34extern  void    CpyObj(unsigned *from, unsigned *to, unsigned w, unsigned h, unsigned sw);
Note: See TracChangeset for help on using the changeset viewer.