X-Git-Url: http://git.asbjorn.it/?a=blobdiff_plain;f=lib%2Fpython%2Ftag.h;fp=lib%2Fpython%2Ftag.h;h=84318d656d8b0470f6ac8962d48af318085efe2f;hb=a18cdd835cad27c679d6a9659836f035fc3a0b5c;hp=0000000000000000000000000000000000000000;hpb=6861429e78f6d4777fd2ad05c3e91f4bb7fd0788;p=swftools.git diff --git a/lib/python/tag.h b/lib/python/tag.h new file mode 100644 index 0000000..84318d6 --- /dev/null +++ b/lib/python/tag.h @@ -0,0 +1,37 @@ +/* tag.h + + Python wrapper for librfxswf- tag handlers + + Part of the swftools package. + + Copyright (c) 2003 Matthias Kramm + + 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 */ + +#ifndef __tag_h__ +#define __tag_h__ + +#include "../rfxswf.h" +#undef HAVE_STAT +#include + +extern PyTypeObject TagClass; + +PyObject* tag_new(); +PyObject* tag_new2(TAG*tag); +TAG* tag_getTAG(PyObject*self); + +PyMethodDef* tag_getMethods(); +#endif