diff options
author | Bert <ber.t@gmx.com> | 2011-02-16 21:40:20 +0100 |
---|---|---|
committer | Bert <ber.t@gmx.com> | 2011-02-16 21:40:20 +0100 |
commit | 26c2179be7676df3049035e5e65039c7fc232cb7 (patch) | |
tree | d1800498556c3617cfa4fad49d9bfd4176e2d383 /image.h | |
parent | 8919204a2e666e12216240a792bfff7a391d4d43 (diff) |
Refactored thumbs, new files thumbs.[ch]
Diffstat (limited to 'image.h')
-rw-r--r-- | image.h | 9 |
1 files changed, 0 insertions, 9 deletions
@@ -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*); |