openbox/c/screenwrap.h

15 lines
223 B
C
Raw Normal View History

2003-03-16 21:11:39 +00:00
#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