summaryrefslogtreecommitdiffstats
path: root/image.h
diff options
context:
space:
mode:
authorBert <ber.t@gmx.com>2011-02-16 21:40:20 +0100
committerBert <ber.t@gmx.com>2011-02-16 21:40:20 +0100
commit26c2179be7676df3049035e5e65039c7fc232cb7 (patch)
treed1800498556c3617cfa4fad49d9bfd4176e2d383 /image.h
parent8919204a2e666e12216240a792bfff7a391d4d43 (diff)
downloadnsxiv-26c2179be7676df3049035e5e65039c7fc232cb7.tar.zst
Refactored thumbs, new files thumbs.[ch]
Diffstat (limited to 'image.h')
-rw-r--r--image.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/image.h b/image.h
index 49ce70e..fd5b0fe 100644
--- a/image.h
+++ b/image.h
@@ -49,20 +49,11 @@ typedef struct img_s {
int h;
} img_t;
-typedef struct thumb_s {
- int x;
- int y;
- int w;
- int h;
- Pixmap pm;
-} thumb_t;
-
void img_init(img_t*, win_t*);
void img_free(img_t*);
int img_check(const char*);
int img_load(img_t*, const char*);
-int img_load_thumb(thumb_t*, const char*);
void img_render(img_t*, win_t*);