Mercurial > geeqie
diff src/filedata.h @ 784:16b3a5c8aedc
new notification system (used only in vflist for now)
author | nadvornik |
---|---|
date | Wed, 04 Jun 2008 21:12:47 +0000 |
parents | d6a7fb4b8e7c |
children | 6d65167764ea |
line wrap: on
line diff
--- a/src/filedata.h Tue Jun 03 19:44:19 2008 +0000 +++ b/src/filedata.h Wed Jun 04 21:12:47 2008 +0000 @@ -77,4 +77,8 @@ void file_data_sc_free_ci(FileData *fd); void file_data_sc_free_ci_list(GList *fd_list); +typedef void (*FileDataNotifyFunc)(FileData *fd, gpointer data); +gint file_data_register_notify_func(FileDataNotifyFunc func, gpointer data); +gint file_data_unregister_notify_func(FileDataNotifyFunc func, gpointer data); +void file_data_send_notification(FileData *fd); #endif