mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-13 23:27:12 +00:00
File rawcolordefs.h was completely missing. Both llcolordefs.h and rawcolordefs.h must be included in subr.c if -DCOLOR Make newColorizeFont8() local to rawcolor.c
9 lines
251 B
C
9 lines
251 B
C
#ifndef RAWCOLORDEFS_H
|
|
#define RAWCOLORDEFS_H 1
|
|
#include "lispemul.h" /* for LispPTR */
|
|
void C_slowbltchar(LispPTR *args);
|
|
LispPTR Colorize_Bitmap(LispPTR args[]);
|
|
void Draw_8BppColorLine(LispPTR *args);
|
|
void Uncolorize_Bitmap(LispPTR args[]);
|
|
#endif
|