1st july: add minimal video support
1st augu: minimal gtk gui
1st sept: release of version 1.0
+ ? : multi challenger support
unsorted todo:
- connection management
- v4l introduction
- gtk introduction
+main principle: KIS
let's see :)
frank a.k.a. hackbard
--- /dev/null
+/* ivac.c -- main ivac file
+ *
+ * author: hackbard@hackdaworld.dyndns.org
+ * frank.zirkelbach@physik.uni-augsburg.de
+ *
+ * Copyright (C) 2004 Frank Zirkelbach
+ *
+ * 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 2 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, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ *
+ */
+
+#include "ivac.h"
+
+int main(int argc,char **argv) {
+
+
+
+ return 1;
+}
--- /dev/null
+/* ivac.h -- main ivac header file */
+
+#ifndef IVAC_H
+#define IVAC_H
+
+/* includes */
+#define _GNU_SOURCE
+#include <stdio.h>
+
+/* defines */
+#define CHAR_USERNAME 32
+
+/* variables */
+
+typedef s_ivac {
+ char username[CHAR_USERNAME];
+ t_net net;
+
+} t_ivac;
+
+#endif