summaryrefslogtreecommitdiffstats
path: root/src/pystatusbar.h
blob: 9749c9f02e5d404912aeede4e5f0df9315a2f340 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _PYSTATUSBAR_H_
#define _PYSTATUSBAR_H_

#include <Python.h>

void pystatusbar_item_register(PyObject *script, const char *sitem, 
        const char *value, PyObject *func);
void pystatusbar_item_unregister(const char *iname);
void pystatusbar_cleanup_script(PyObject *script);
void pystatusbar_init(void);
void pystatusbar_deinit(void);

#endif