~blackskad/gnomeradio/dev-vol-button

« back to all changes in this revision

Viewing changes to src/gui.h

  • Committer: mfcn
  • Date: 2006-02-24 09:42:47 UTC
  • Revision ID: svn-v3-trunk0:ba97a3d1-ec25-0410-b1c6-e06ad936ea6c:trunk:125
        * src/gui.c, src/gui.h, src/prefs.c, src/prefs.h, src/tech.c,
        src/tech.h, src/trayicon.h: added an function that scans for
        stations on first run, and adds them to the presets.
        * Code cleanup here and there

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
 
52
52
gnomeradio_settings settings;
53
53
 
54
 
void start_radio(gboolean restart);
 
54
void start_radio(gboolean restart, GtkWidget *app);
55
55
 
56
 
void start_mixer(gboolean restart);
 
56
void start_mixer(gboolean restart, GtkWidget *app);
57
57
 
58
58
GList* get_mixer_recdev_list(void);
59
59
 
80
80
void change_preset(gboolean next);
81
81
 
82
82
 
83
 
void show_error_message(const char* caption, const char* error_msg);
84
 
void show_warning_message(const char* caption, const char* error_msg);
 
83
void show_error_message(const char* error, const char* details);
 
84
void show_warning_message(const char* warning, const char* details);
85
85
 
86
86
#endif