From 4ffa05c30b10eb8a07dd0a9b43466f6d11bc1364 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 2 Apr 2018 15:02:08 +0200 Subject: Cleanup: move undo into it's own directory Split out undo API from ED_util.h into ED_undo.h --- source/blender/editors/undo/undo_intern.h | 35 +++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 source/blender/editors/undo/undo_intern.h (limited to 'source/blender/editors/undo/undo_intern.h') diff --git a/source/blender/editors/undo/undo_intern.h b/source/blender/editors/undo/undo_intern.h new file mode 100644 index 00000000000..671f9637d65 --- /dev/null +++ b/source/blender/editors/undo/undo_intern.h @@ -0,0 +1,35 @@ +/* + * ***** BEGIN GPL LICENSE BLOCK ***** + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + * ***** END GPL LICENSE BLOCK ***** + */ + +/** \file blender/editors/undo/undo_intern.h + * \ingroup edundo + */ + +#ifndef __UNDO_INTERN_H__ +#define __UNDO_INTERN_H__ + +/* internal exports only */ + +struct UndoType; + +/* memfile_undo.c */ +void ED_memfile_undosys_type(struct UndoType *ut); + +#endif /* __UNDO_INTERN_H__ */ -- cgit v1.2.3