summaryrefslogtreecommitdiffstats
path: root/pythemes.h
diff options
context:
space:
mode:
authorChristopher Davis <loafier@gmail.com>2006-07-03 06:00:18 +0000
committerChristopher Davis <loafier@gmail.com>2006-07-03 06:00:18 +0000
commit34cdeaae9369af5dce3ce3a4a7756c033bc44cc5 (patch)
treee6d1c6e41fa734e0ac40ef5f3c68aff689631017 /pythemes.h
parenta329fa4675852886ba2bbc9637cebcac882f1575 (diff)
downloadirssi-python-34cdeaae9369af5dce3ce3a4a7756c033bc44cc5.tar.gz
irssi-python-34cdeaae9369af5dce3ce3a4a7756c033bc44cc5.tar.xz
irssi-python-34cdeaae9369af5dce3ce3a4a7756c033bc44cc5.zip
worked on formats. working on themes now; testing adding functions and methods to objects
git-svn-id: http://svn.irssi.org/repos/irssi-python@4295 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'pythemes.h')
-rw-r--r--pythemes.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/pythemes.h b/pythemes.h
new file mode 100644
index 0000000..92af965
--- /dev/null
+++ b/pythemes.h
@@ -0,0 +1,13 @@
+#ifndef _PYTHEMES_H_
+#define _PYTHEMES_H_
+
+#include <Python.h>
+
+struct _TEXT_DEST_REC;
+
+int pythemes_printformat(struct _TEXT_DEST_REC *dest, const char *script, const char *format, PyObject *argtup);
+int pythemes_register(const char *script, PyObject *list);
+void pythemes_unregister(const char *script);
+int pythemes_init(void);
+
+#endif