/***************************************************************************
 *   Copyright (C) 2005 by Stefan Walkner                                  *
 *   swalkner@gmail.com                                                    *
 *                                                                         *
 *   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.             *
 ***************************************************************************/

#ifndef STD_TYPES_H
#define STD_TYPES_H

    /* some global definitions which may be used through the whole project */

    /*
     * NOTICE:
     * NEVER EVER use this Boolean def to a function that DOES NOT return a Boolean!!!!
     * I really would like to be boolean less than 4bytes...
     */
    typedef enum
    {
        TRUE=0,
        FALSE=1
    } Boolean;

#endif

