b25041108461ac349098cfe6b62dcea1009d3eec
[jelmer/subvertpy.git] / editor.h
1 /*
2  * Copyright © 2008 Jelmer Vernooij <jelmer@samba.org>
3  * -*- coding: utf-8 -*-
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19
20 #ifndef _BZR_SVN_EDITOR_H_
21 #define _BZR_SVN_EDITOR_H_
22
23 #pragma GCC visibility push(hidden)
24
25 extern PyTypeObject DirectoryEditor_Type;
26 extern PyTypeObject FileEditor_Type;
27 extern PyTypeObject Editor_Type;
28 extern PyTypeObject TxDeltaWindowHandler_Type;
29 PyObject *new_editor_object(const svn_delta_editor_t *editor, void *baton, apr_pool_t *pool, PyTypeObject *type, void (*done_cb) (void *baton), void *done_baton);
30
31 #define DirectoryEditor_Check(op) PyObject_TypeCheck(op, &DirectoryEditor_Type)
32 #define FileEditor_Check(op) PyObject_TypeCheck(op, &FileEditor_Type)
33 #define Editor_Check(op) PyObject_TypeCheck(op, &Editor_Type)
34 #define TxDeltaWindowHandler_Check(op) PyObject_TypeCheck(op, &TxDeltaWindowHandler_Type)
35
36 typedef struct {
37         PyObject_HEAD
38         svn_txdelta_window_handler_t txdelta_handler;
39         void *txdelta_baton;
40 } TxDeltaWindowHandlerObject;
41
42 #pragma GCC visibility pop
43
44 #endif /* _BZR_SVN_EDITOR_H_ */