From a1c8543f2acd7086d412cb794b32f96794b00659 Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Mon, 24 Dec 2007 18:27:28 +0000 Subject: Step 3 for the initial commits for 2.5: removing src/ and python, adding new windowmanager module, and the first bits of new editors module. --- source/blender/windowmanager/wm.h | 43 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 source/blender/windowmanager/wm.h (limited to 'source/blender/windowmanager/wm.h') diff --git a/source/blender/windowmanager/wm.h b/source/blender/windowmanager/wm.h new file mode 100644 index 00000000000..0450adc1268 --- /dev/null +++ b/source/blender/windowmanager/wm.h @@ -0,0 +1,43 @@ +/** + * $Id: + * + * ***** 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * + * The Original Code is Copyright (C) 2007 Blender Foundation. + * All rights reserved. + * + * + * Contributor(s): Blender Foundation + * + * ***** END GPL LICENSE BLOCK ***** + */ +#ifndef WM_H +#define WM_H + +extern void wm_close_and_free(bContext *C, wmWindowManager *); +extern void wm_close_and_free_all(bContext *C, ListBase *); + +extern void wm_add_default(bContext *C); +extern void wm_check(bContext *C); + +/* wm_operator.c, for init/exit */ +void wm_operatortype_free(void); +void wm_operatortype_init(void); + + +#endif /* WM_H */ + -- cgit v1.2.3