#ifndef _PRELOAD_H_ #define _PRELOAD_H_ #include #include #include struct preload_hash_table_value_t { GdkPixbuf *pb; gint width, height; gdouble ratio; }; void preload_init(); void preload_free(); void preload_start_thread(GtkWidget*, gint, gint); void preload_clear(); gpointer preload_get(const gchar*); extern guint preload_max; #endif