00001 // Copyright (C) 2009-2010 Ferdinand Majerech 00002 // This file is part of MiniINI 00003 // For conditions of distribution and use, see copyright notice in LICENSE.txt 00004 00005 #ifndef GLOBALS_H_INCLUDED 00006 #define GLOBALS_H_INCLUDED 00007 00008 #include "typedefs.h" 00009 00010 namespace miniini_private 00011 { 00012 00014 extern c comment; 00015 00017 00020 extern c linesep[3]; 00022 #define BOOLNUM 3 00024 00027 extern c truebools [BOOLNUM] [8]; 00029 00032 extern c falsebools [BOOLNUM] [8]; 00033 00034 } 00035 00037 00041 void INISetComment(const char comment_char); 00042 00043 #endif