summaryrefslogtreecommitdiff
path: root/c/screenwrap.h
blob: 2ca278cf8a5d02f09bbef8782229f32ae11e435b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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