mp3splt-gtk
mp3splt-gtk.h
1 /**********************************************************
2  *
3  * mp3splt-gtk -- utility based on mp3splt,
4  * for mp3/ogg splitting without decoding
5  *
6  * Copyright: (C) 2005-2013 Alexandru Munteanu
7  * Contact: m@ioalex.net
8  *
9  * http://mp3splt.sourceforge.net/
10  *
11  *********************************************************/
12 
13 /**********************************************************
14  *
15  * This program is free software; you can redistribute it and/or
16  * modify it under the terms of the GNU General Public License
17  * as published by the Free Software Foundation; either version 2
18  * of the License, or (at your option) any later version.
19  *
20  * This program is distributed in the hope that it will be useful,
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23  * GNU General Public License for more details.
24  *
25  * You should have received a copy of the GNU General Public License
26  * along with this program; if not, write to the Free Software
27  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
28  * USA.
29  *
30  *********************************************************/
31 
32 /**********************************************************
33  * Filename: mp3splt-gtk.h
34  *
35  * header of mp3splt-gtk.c
36  *
37  *********************************************************/
38 
39 #ifndef MP3SPLT_GTK_H
40 #define MP3SPLT_GTK_H
41 
42 #include "all_includes.h"
43 
44 void split_action(ui_state *ui);
45 GThread *create_thread(GThreadFunc func, ui_state *ui);
46 GThread *create_thread_with_fname(GThreadFunc func, ui_with_fname *ui_fname);
47 void enter_threads();
48 void exit_threads();
49 gboolean exit_application(GtkWidget *widget, GdkEvent *event, gpointer data);
50 void exit_application_bis(GtkWidget *widget, gpointer data);
51 
52 #define MP3SPLT_GTK_DATE "20/07/13"
53 
54 #endif
55