X-Git-Url: http://git.asbjorn.it/?a=blobdiff_plain;f=lib%2Fpython%2Ftaglist.h;fp=lib%2Fpython%2Ftaglist.h;h=511296456be112250e43e0f55dd4463361abd101;hb=a18cdd835cad27c679d6a9659836f035fc3a0b5c;hp=0000000000000000000000000000000000000000;hpb=6861429e78f6d4777fd2ad05c3e91f4bb7fd0788;p=swftools.git diff --git a/lib/python/taglist.h b/lib/python/taglist.h new file mode 100644 index 0000000..5112964 --- /dev/null +++ b/lib/python/taglist.h @@ -0,0 +1,37 @@ +/* taglist.h + + Python wrapper for librfxswf- taglist handlers, header file + + 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 __taglist_h__ +#define __taglist_h__ + +#include "../rfxswf.h" +#undef HAVE_STAT +#include + +extern PyTypeObject TagListClass; + +PyObject * taglist_new(); +PyObject * taglist_new2(TAG*tag); +TAG* taglist_getTAGs(PyObject*); + +PyMethodDef* taglist_getMethods(); +#endif