summaryrefslogtreecommitdiff
path: root/src/response.h
blob: 5960864aabf497d0f7b63e90f803bbf1e71733ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef XPYB_RESPONSE_H
#define XPYB_RESPONSE_H

#include "protobj.h"

typedef struct {
    xpybProtobj base;
} xpybResponse;

extern PyTypeObject xpybResponse_type;

int xpybResponse_modinit(PyObject *m);

#endif