more horizontal refactoring
[swftools.git] / lib / python / taglist.h
index f111e96..8eb9d7a 100644 (file)
 #ifndef __taglist_h__
 #define __taglist_h__
 
-#include "../rfxswf.h"
-#undef HAVE_STAT
 #include <Python.h>
+#undef HAVE_STAT
+#include "../rfxswf.h"
+
+#include "./tagmap.h"
 
 extern PyTypeObject TagListClass;
 
@@ -35,6 +37,8 @@ PyObject * taglist_new();
 PyObject * taglist_new2(TAG*tag);
 
 TAG* taglist_getTAGs(PyObject*);
+/* for sprites: */
+TAG* taglist_getTAGs2(PyObject*self, PyObject*tagmap, int addDependencies);
 
 PyMethodDef* taglist_getMethods();
 #endif