summaryrefslogtreecommitdiff
path: root/amiga/bitmap.h
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2009-05-16 17:04:28 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2009-05-16 17:04:28 +0000
commit08d0c1682250763c0f8300e54bfa877345edd5fb (patch)
treed66e94b57d6a045197b22654eb44bc2fd9034859 /amiga/bitmap.h
parent478d953ea50169cab4ae57ba414c57332b17bf5f (diff)
downloadnetsurf-08d0c1682250763c0f8300e54bfa877345edd5fb.tar.gz
netsurf-08d0c1682250763c0f8300e54bfa877345edd5fb.tar.bz2
Copy and save images as IFF ILBM attempt 2.
Copy now works, saving just creates an empty file - probably something wrong with my DTM_WRITE call. svn path=/trunk/netsurf/; revision=7517
Diffstat (limited to 'amiga/bitmap.h')
-rwxr-xr-xamiga/bitmap.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/amiga/bitmap.h b/amiga/bitmap.h
index f3a7c4b89..48dc9d758 100755
--- a/amiga/bitmap.h
+++ b/amiga/bitmap.h
@@ -20,6 +20,7 @@
#define AMIGA_BITMAP_H
#include <exec/types.h>
#include <proto/graphics.h>
+#include <intuition/classusr.h>
struct bitmap {
int width;
@@ -34,5 +35,5 @@ struct bitmap {
};
struct BitMap *ami_getcachenativebm(struct bitmap *bitmap,int width,int height,struct BitMap *friendbm);
-
+Object *ami_datatype_object_from_bitmap(struct bitmap *bitmap);
#endif