]> gitweb.michael.orlitzky.com - xfce4-hdaps.git/blob - panel-plugin/xfce4-hdaps-dialogs.h
Added the LICENSE_GPL3 macro to the dialog header.
[xfce4-hdaps.git] / panel-plugin / xfce4-hdaps-dialogs.h
1 /*
2 * xfce4-hdaps, an XFCE4 panel plugin for the HDAPS system.
3 *
4 * Copyright Michael Orlitzky
5 *
6 * http://michael.orlitzky.com/
7 *
8 * This program is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation, either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * http://www.fsf.org/licensing/licenses/gpl.html
19 */
20
21 #ifndef __XFCE4_HDAPS_DIALOGS_H__
22 #define __XFCE4_HDAPS_DIALOGS_H__
23
24 #include "xfce4-hdaps.h"
25
26 G_BEGIN_DECLS
27
28 void hdaps_configure(XfcePanelPlugin *plugin,
29 HdapsPlugin *hdaps);
30
31 void hdaps_about(XfcePanelPlugin *plugin);
32
33 G_END_DECLS
34
35 /* I don't know why XFCE doesn't provide this. */
36 #define LICENSE_GPL3 \
37 "This program is free software: you can redistribute it and/or modify\n" \
38 "it under the terms of the GNU General Public License as published by\n" \
39 "the Free Software Foundation, either version 3 of the License, or\n" \
40 "(at your option) any later version.\n" \
41 "\n" \
42 "This program is distributed in the hope that it will be useful,\n" \
43 "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" \
44 "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" \
45 "GNU General Public License for more details.\n" \
46 "\n" \
47 "http://www.fsf.org/licensing/licenses/gpl.html\n"
48
49 #endif