summaryrefslogtreecommitdiffstats
path: root/src/window.h
diff options
context:
space:
mode:
authorPatrick McDermott <pj@pehjota.net>2017-09-16 16:23:13 (EDT)
committer Patrick McDermott <pj@pehjota.net>2017-09-16 16:23:13 (EDT)
commitf7d5d9d23f5dc896842ed23054272c24a6ca5c51 (patch)
tree5e1d84efe7dae4e03ea7777295ebac6e5e9369b1 /src/window.h
parent21bcaf636f81b82559b70c11b47eeb3f73b218ca (diff)
downloadmarquee-f7d5d9d23f5dc896842ed23054272c24a6ca5c51.zip
marquee-f7d5d9d23f5dc896842ed23054272c24a6ca5c51.tar.gz
marquee-f7d5d9d23f5dc896842ed23054272c24a6ca5c51.tar.bz2
src/*.h: Add include guards
Diffstat (limited to 'src/window.h')
-rw-r--r--src/window.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/window.h b/src/window.h
index 0741423..f3a792f 100644
--- a/src/window.h
+++ b/src/window.h
@@ -19,6 +19,9 @@
* along with Marquee. If not, see <http://www.gnu.org/licenses/>.
*/
+#ifndef MQ_WINDOW_H
+#define MQ_WINDOW_H
+
#include <gtk.h>
typedef struct {
@@ -28,3 +31,5 @@ typedef struct {
MqWindow *
mq_window_new(gchar **uris);
+
+#endif