/* * 2nd - OMAP "second stage" tt-loader * * Copyright (C) 2008 Guillaume Bougard * Copyright (C) 2005 Luis Recuerda * * 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 _TYPES_H_ #define _TYPES_H_ #define NULL ((void *) 0) typedef unsigned char u8; typedef unsigned short u16; typedef unsigned int u32; typedef u32 (u32_fnc_t) (void); typedef void (init_fnc_t) (void); typedef void (crc_cb_fnc_t) (u32,u32,u32); #endif