source: buchla-68k/include/vsddsw.h@ 0580615

Last change on this file since 0580615 was 0580615, checked in by Thomas Lopatic <thomas@…>, 7 years ago

Point of no return.

  • Property mode set to 100644
File size: 1.7 KB
Line 
1/*
2 =============================================================================
3 VSDDSW.H -- VSDD software support definitions
4 Version 6 -- 1987-05-27 -- D.N. Lynx Crowe
5 Copyright 1987 -- D.N. Lynx Crowe
6 =============================================================================
7*/
8
9/* functions */
10
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);
14
15/* these should be voids ... */
16
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 TracBrowser for help on using the repository browser.