mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-13 23:27:12 +00:00
* Remove code for unsupported Sun display configurations Initial cleanup removing all code that was #ifdef'd for SUNDISPLAY. Other SunWindows dependent code may also be removeable * prropstyle will never be defined with no SunWindows support and therefore no pixrect code * Remove code that is ifndef NOPIXRECT, since pixrects are part of the obsolete Sun windows code. There are still traces of pixrect dependent code that could be removed.
21 lines
740 B
C
21 lines
740 B
C
#ifndef BBTSUBDEFS_H
|
|
#define BBTSUBDEFS_H 1
|
|
|
|
/********************************************************/
|
|
/* */
|
|
/* Don Charnley's bitblt code */
|
|
/* */
|
|
/********************************************************/
|
|
#include "lispemul.h" /* for LispPTR, DLword */
|
|
|
|
void bitbltsub(LispPTR *argv);
|
|
LispPTR n_new_cursorin(DLword *baseaddr, int dx, int dy, int w, int h);
|
|
LispPTR bitblt_bitmap(LispPTR *args);
|
|
LispPTR bitshade_bitmap(LispPTR *args);
|
|
void bltchar(LispPTR *args);
|
|
void newbltchar(LispPTR *args);
|
|
void ccfuncall(unsigned int atom_index, int argnum, int bytenum);
|
|
void tedit_bltchar(LispPTR *args);
|
|
|
|
#endif
|