2010-06-28 12:07:55 +00:00
|
|
|
#ifndef INTERPRETER_TYPES_H_INCLUDED
|
|
|
|
#define INTERPRETER_TYPES_H_INCLUDED
|
|
|
|
|
|
|
|
namespace Interpreter
|
|
|
|
{
|
|
|
|
typedef unsigned int Type_Code; // 32 bit
|
|
|
|
|
2010-06-28 14:48:19 +00:00
|
|
|
typedef unsigned int Type_Data; // 32 bit
|
|
|
|
|
2010-06-28 18:07:17 +00:00
|
|
|
typedef short Type_Short; // 16 bit
|
|
|
|
|
2010-06-28 16:27:45 +00:00
|
|
|
typedef int Type_Integer; // 32 bit
|
2010-06-28 14:48:19 +00:00
|
|
|
|
2010-06-28 16:27:45 +00:00
|
|
|
typedef float Type_Float; // 32 bit
|
2010-06-28 12:07:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|