mercurial/cext/revlog.h
author Pierre-Yves David <pierre-yves.david@octobus.net>
Sat, 25 Feb 2023 01:07:44 +0100
branchstable
changeset 49686 fc8e37c380d3
parent 44485 9db11679f8ac
permissions -rw-r--r--
dirstate: add a synchronisation point before doing a full dirstate read This will be useful to test some race conditions around the dirstate.

/*
 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;

#define HgRevlogIndex_Check(op) PyObject_TypeCheck(op, &HgRevlogIndex_Type)

#endif /* _HG_REVLOG_H_ */