14 lines
223 B
C
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
|