diff options
author | Tor Andersson <tor@ghostscript.com> | 2009-02-28 17:47:50 +0100 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2009-02-28 17:47:50 +0100 |
commit | 9d1fbd85969dbfcf5de9e458f7d9387f3fc8959c (patch) | |
tree | 163e47d4656492c873d19006bae9f697a3565ff6 /include/fitz/wld_image.h | |
parent | 4ee4da1c6d2db727790dd72a60a7f29d43e802b9 (diff) | |
download | mupdf-9d1fbd85969dbfcf5de9e458f7d9387f3fc8959c.tar.xz |
Merge and move header files into the source directories.
Diffstat (limited to 'include/fitz/wld_image.h')
-rw-r--r-- | include/fitz/wld_image.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/include/fitz/wld_image.h b/include/fitz/wld_image.h deleted file mode 100644 index 89d180ba..00000000 --- a/include/fitz/wld_image.h +++ /dev/null @@ -1,16 +0,0 @@ -typedef struct fz_image_s fz_image; - -/* loadtile will fill a pixmap with the pixel samples. non-premultiplied alpha. */ - -struct fz_image_s -{ - int refs; - fz_error* (*loadtile)(fz_image*,fz_pixmap*); - void (*drop)(fz_image*); - fz_colorspace *cs; - int w, h, n, a; -}; - -fz_image *fz_keepimage(fz_image *img); -void fz_dropimage(fz_image *img); - |