blob: 8a0f055214236496aa4c0a4d10139c63f95077a4 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef _THUMBNAILS_H_
#define _THUMBNAILS_H_
#include <glib.h>
gpointer add_thumbs_thread(gpointer data);
extern GThread *thumb_thread;
extern gboolean thumb_thread_exit;
#endif
|