76 lines
2.7 KiB
C
76 lines
2.7 KiB
C
// ******************************************************************
|
|
// *
|
|
// * .,-::::: .,:: .::::::::. .,:: .:
|
|
// * ,;;;'````' `;;;, .,;; ;;;'';;' `;;;, .,;;
|
|
// * [[[ '[[,,[[' [[[__[[\. '[[,,[['
|
|
// * $$$ Y$$$P $$""""Y$$ Y$$$P
|
|
// * `88bo,__,o, oP"``"Yo, _88o,,od8P oP"``"Yo,
|
|
// * "YUMMMMMP",m" "Mm,""YUMMMP" ,m" "Mm,
|
|
// *
|
|
// * Cxbx->Cxbx.h
|
|
// *
|
|
// * This file is part of the Cxbx project.
|
|
// *
|
|
// * Cxbx and Cxbe are free software; you can redistribute them
|
|
// * and/or modify them 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 recieved a copy of the GNU General Public License
|
|
// * along with this program; see the file COPYING.
|
|
// * If not, write to the Free Software Foundation, Inc.,
|
|
// * 59 Temple Place - Suite 330, Bostom, MA 02111-1307, USA.
|
|
// *
|
|
// * (c) 2002-2003 Aaron Robinson <caustik@caustik.com>
|
|
// *
|
|
// * All rights reserved
|
|
// *
|
|
// ******************************************************************
|
|
#ifndef CXBX_H
|
|
#define CXBX_H
|
|
|
|
// ******************************************************************
|
|
// * Caustik's favorite typedefs
|
|
// ******************************************************************
|
|
typedef signed int sint;
|
|
typedef unsigned int uint;
|
|
typedef char int08;
|
|
typedef short int16;
|
|
typedef long int32;
|
|
typedef unsigned char uint08;
|
|
typedef unsigned short uint16;
|
|
typedef unsigned long uint32;
|
|
typedef signed char sint08;
|
|
typedef signed short sint16;
|
|
typedef signed long sint32;
|
|
|
|
// ******************************************************************
|
|
// * Version Information
|
|
// ******************************************************************
|
|
#define CXBX_VERSION "0.6.0-Pre9"
|
|
|
|
// ******************************************************************
|
|
// * func : RoundUp
|
|
// ******************************************************************
|
|
static uint32 RoundUp(uint32 x_dwValue, uint32 x_dwMult)
|
|
{
|
|
if(x_dwMult == 0)
|
|
return x_dwValue;
|
|
|
|
return x_dwValue - (x_dwValue-1)%x_dwMult + (x_dwMult - 1);
|
|
}
|
|
|
|
// ******************************************************************
|
|
// * Core Components
|
|
// ******************************************************************
|
|
#include "Core/Error.h"
|
|
#include "Core/Exe.h"
|
|
#include "Core/Xbe.h"
|
|
|
|
#endif
|