/* * Copyright 2014 (c) Anna Schumaker. */ #ifndef OCARINA_H #define OCARINA_H #include #include /* main.cpp */ namespace gui { const std::string share_file(const std::string &); } extern struct queue_ops collection_ops; extern struct queue_ops history_ops; extern struct queue_ops playlist_ops; extern struct queue_ops tempq_ops; extern struct audio_ops audio_ops; void on_pq_created(queue *, unsigned int); void post_init_queue_tabs(); /* gst.cpp */ namespace gst { void play(); void pause(); void stop(); void prev(); void toggle(); void init_pre(); void init(); } /* manager.cpp */ namespace manager { void init(); } /* playlist.cpp */ namespace plist { void init(); } /* window.cpp */ Gtk::Window *window_init(); #endif /* OCARINA_H */