]> Pileus Git - lackey/blobdiff - src/screen.h
Make month view interactive
[lackey] / src / screen.h
index 7f6aa9d5b57db2990cb202451afbd4dd579083ea..f5b86713e81ad7f3dc195eabbad05a1fbacd811a 100644 (file)
@@ -1,5 +1,26 @@
+/*
+ * Copyright (C) 2012 Andy Spencer <andy753421@gmail.com>
+ * 
+ * This program 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 SCREEN_H
+#define SCREEN_H
+
 /* Screen functions */
 void screen_init(void);
+void screen_resize(void);
 void screen_draw(void);
 int  screen_run(int key, mmask_t btn, int row, int col);
 
@@ -32,3 +53,5 @@ int todo_run(int,mmask_t,int,int);
 int notes_run(int,mmask_t,int,int);
 int settings_run(int,mmask_t,int,int);
 int help_run(int,mmask_t,int,int);
+
+#endif