mirror of
https://github.com/Stichting-MINIX-Research-Foundation/xsrc.git
synced 2025-09-15 15:45:00 -04:00
21 lines
305 B
C
21 lines
305 B
C
/* Includes for AmigaCC driver */
|
|
|
|
|
|
#include <sys/device.h>
|
|
#include <sys/queue.h>
|
|
#include "dev/grfabs_reg.h"
|
|
#include "dev/viewioctl.h"
|
|
#include "dev/grfvar.h"
|
|
|
|
|
|
#define MAX_COLORS 256
|
|
|
|
|
|
struct viewinfo {
|
|
bmap_t bm;
|
|
struct view_size vs;
|
|
colormap_t colormap;
|
|
long entry [MAX_COLORS];
|
|
};
|
|
|