Export public function to read points file
[cascardo/movie.git] / point.h
diff --git a/point.h b/point.h
index 5b13e26..f503922 100644 (file)
--- a/point.h
+++ b/point.h
 #ifndef POINTS_H
 #define POINTS_H
 
+#include <glib.h>
+
 typedef struct
 {
   int x, y;
   char *name;
 } Point;
 
+GArray * ReadPoints (char *);
+
 #endif