New bitmap method SetRGBConversionFunction which can be used to
[tangerine.git] / workbench / libs / prometheus / prometheus_intern.h
blobf4fb2d8b4ba0ba99e137a8f1766ab13b9d757712
1 /*
2 Copyright (C) 2005 Neil Cafferkey
3 $Id$
4 */
6 #ifndef PROMETHEUS_INTERN_H
7 #define PROMETHEUS_INTERN_H
10 #include <exec/types.h>
11 #include <exec/libraries.h>
12 #include <exec/lists.h>
13 #include <libraries/prometheus.h>
14 #include <oop/oop.h>
15 #include <hidd/pci.h>
16 #include <hidd/irq.h>
17 #include <aros/asmcall.h>
18 #include <aros/libcall.h>
19 #include <libcore/base.h>
22 #ifndef UPINT
23 typedef ULONG UPINT;
24 typedef LONG PINT;
25 #endif
28 #undef PCIBoard
29 typedef struct PCIBoard PCIBoard;
32 struct LibBase
34 struct LibHeader lib_header;
35 OOP_Object *pci_hidd;
36 OOP_Object *irq_hidd;
37 OOP_AttrBase pcidevice_attr_base;
38 struct MinList boards;
42 struct PCIBoard
44 struct MinNode node;
45 const VOID *owner;
46 OOP_Object *aros_board;
47 HIDDT_IRQ_Handler *aros_irq;
51 #endif