cleanup comments
[omnplay] / src / omnplay.h
index d336ed6..1fdec39 100644 (file)
@@ -20,6 +20,8 @@
 #ifndef OMNPLAY_H
 #define OMNPLAY_H
 
+#include <pthread.h>
+
 #ifdef __cplusplus
 extern "C"
 {
@@ -154,9 +156,14 @@ typedef struct omnplay_instance
         char whois[PATH_MAX];
         pthread_mutex_t lock;
         pthread_t refresh_thread;
-        GtkWidget *refresh_ui[2];
+        int refresh_thread_r;
         GtkWidget *search;
     } library;
+    struct
+    {
+        playlist_item_t item[MAX_LIBRARY_ITEMS];
+        int count;
+    } clipboard;
 } omnplay_instance_t;
 
 omnplay_instance_t* omnplay_create(int argc, char** argv);