openbox/c/screenwrap.h
2003-03-16 21:11:39 +00:00

14 lines
223 B
C

#ifndef __screenwrap_h
#define __screenwrap_h
#include <Python.h>
/* ScreenWrap is a PyObject */
typedef struct ScreenWrap {
PyObject_HEAD
} ScreenWrap;
void screenwrap_startup();
void screenwrap_shutdown();
#endif