mercurial/cext/revlog.h
author Yuya Nishihara <yuya@tcha.org>
Sun, 02 Dec 2018 21:41:24 +0900
changeset 40860 18a8def6e1b5
parent 40859 aa76be85029b
child 40861 b12700dd261f
permissions -rw-r--r--
revlog: rename indexType to HgRevlogIndex_Type as it's a global symbol It follows the CPython naming convention, but uses Hg instead of Py.

/*
 revlog.h - efficient revlog parsing

 This software may be used and distributed according to the terms of
 the GNU General Public License, incorporated herein by reference.
*/

#ifndef _HG_REVLOG_H_
#define _HG_REVLOG_H_

#include <Python.h>

extern PyTypeObject HgRevlogIndex_Type;

#endif /* _HG_REVLOG_H_ */