1 /* 2 * mape - C4 Landscape.txt editor 3 * 4 * Copyright (c) 2005-2009, Armin Burgmeier 5 * 6 * Distributed under the terms of the ISC license; see accompanying file 7 * "COPYING" for details. 8 * 9 * "Clonk" is a registered trademark of Matthes Bender, used with permission. 10 * See accompanying file "TRADEMARK" for details. 11 * 12 * To redistribute this file separately, substitute the full license texts 13 * for the above references. 14 */ 15 16 #ifndef INC_MAPE_C4_LOG_HANDLE_H 17 #define INC_MAPE_C4_LOG_HANDLE_H 18 19 #include <glib.h> 20 21 G_BEGIN_DECLS 22 23 typedef struct _C4MapgenHandle C4MapgenHandle; 24 25 void c4_log_handle_clear(); 26 const char* c4_log_handle_get_first_log_message(); 27 unsigned int c4_log_handle_get_n_log_messages(); 28 29 G_END_DECLS 30 31 #endif /* INC_MAPE_C4_LOG_HANDLE_H */ 32