
The whole extension was organised in one big 3727 lines monster. This refactoring is splitting these 3727 lines into several smaller files.
14 lines
300 B
C
14 lines
300 B
C
#ifndef INCLUDE_pygit2_object_h
|
|
#define INCLUDE_pygit2_object_h
|
|
|
|
#include <Python.h>
|
|
#include <git2.h>
|
|
#include <pygit2/types.h>
|
|
|
|
PyObject* Object_get_oid(Object *self);
|
|
PyObject* Object_get_hex(Object *self);
|
|
PyObject* Object_get_type(Object *self);
|
|
PyObject* Object_read_raw(Object *self);
|
|
|
|
#endif
|