view LightClone/Source/Types.h @ 39:d0ce73ced12e

Added base GuiDialog for event handling; Hookup level complete dialog
author koryspansel <koryspansel@bendbroadband.com>
date Thu, 22 Sep 2011 09:01:42 -0700
parents c046b9e8ae32
children
line wrap: on
line source

/*
 * Types
 */

#ifndef __TYPES_H__
#define __TYPES_H__

/*
 * int8
 */
typedef signed char int8;

/*
 * int16
 */
typedef signed short int16;

/*
 * int32
 */
typedef signed int int32;

/*
 * uint8
 */
typedef unsigned char uint8;

/*
 * uint16
 */
typedef unsigned short uint16;

/*
 * uint32
 */
typedef unsigned int uint32;

/*
 * ErrorCode
 */
typedef int32 ErrorCode;

/*
 * Error
 */
enum
{
	Error_Success	= 0,
	Error_Fail		= -1,
};

#endif //__TYPES_H__