pnmixer
Volume mixer for the system tray
ui-about-dialog.h
Go to the documentation of this file.
1 /* ui-about-dialog.h
2  * PNmixer is written by Nick Lanham, a fork of OBmixer
3  * which was programmed by Lee Ferrett, derived
4  * from the program "AbsVolume" by Paul Sherman
5  * This program is free software; you can redistribute
6  * it and/or modify it under the terms of the GNU General
7  * Public License v3. source code is available at
8  * <http://github.com/nicklan/pnmixer>
9  */
10 
17 #ifndef _UI_ABOUT_DIALOG_H_
18 #define _UI_ABOUT_DIALOG_H_
19 
20 #include <gtk/gtk.h>
21 
22 typedef struct about_dialog AboutDialog;
23 
24 AboutDialog *about_dialog_create(GtkWindow *parent);
25 void about_dialog_destroy(AboutDialog *dialog);
26 void about_dialog_run(AboutDialog *dialog);
27 
28 #endif // _UI_ABOUT_DIALOG_H_
void about_dialog_destroy(AboutDialog *dialog)
void about_dialog_run(AboutDialog *dialog)
AboutDialog * about_dialog_create(GtkWindow *parent)