diff options
author | Thomas White <taw@bitwiz.me.uk> | 2019-02-19 18:17:56 +0100 |
---|---|---|
committer | Thomas White <taw@bitwiz.me.uk> | 2019-02-19 18:17:56 +0100 |
commit | 24c20239779d0ec616adde651c594c7bf08d58c7 (patch) | |
tree | c1900bda6b2c5f58a66d4b8d89f4a946a24465dc /src-old/slide_window.h | |
parent | 9fbe4d66565e6ab11c5022bcfe5ed0ddfb91dc7e (diff) |
WIP
Diffstat (limited to 'src-old/slide_window.h')
-rw-r--r-- | src-old/slide_window.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src-old/slide_window.h b/src-old/slide_window.h new file mode 100644 index 0000000..681ec39 --- /dev/null +++ b/src-old/slide_window.h @@ -0,0 +1,37 @@ +/* + * slide_window.h + * + * Copyright © 2013-2018 Thomas White <taw@bitwiz.org.uk> + * + * This file is part of Colloquium. + * + * Colloquium is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + */ + +#ifndef SLIDEWINDOW_H +#define SLIDEWINDOW_H + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + +typedef struct _slidewindow SlideWindow; + +extern SlideWindow *slide_window_open(struct presentation *p, SCBlock *scblocks, + GApplication *app); + +extern void slide_window_update(SlideWindow *sw); + +#endif /* SLIDEWINDOW_H */ |