splitted SWF.c into various modules
[swftools.git] / lib / python / action.h
index e77dfac..c96e7c2 100644 (file)
@@ -1,4 +1,4 @@
-/* action.c
+/* action.h
 
    Python wrapper for librfxswf- actionscript stuff (header)
 
 #include <Python.h>
 
 extern PyTypeObject ActionClass;
-
-typedef struct {
-    PyObject_HEAD
-    ActionTAG*action;
-} ActionObject;
-
 PyObject* f_Action(PyObject* self, PyObject* args, PyObject* kwargs);
+ActionTAG* action_getAction(PyObject* self);
+
+PyMethodDef* action_getMethods();
 #endif