(svn r15743) -Codechange: move the definitions of some fake squirrel types to their own file.

replace/41b28d7194a279bdc17475d4fbe2ea6ec885a466
yexo 16 years ago
parent b078f8095a
commit 384599ef2c

@ -2267,6 +2267,10 @@
<Filter
Name="Script"
>
<File
RelativePath=".\..\src\script\fake_squirrel_types.hpp"
>
</File>
<File
RelativePath=".\..\src\script\script_info.cpp"
>

@ -2264,6 +2264,10 @@
<Filter
Name="Script"
>
<File
RelativePath=".\..\src\script\fake_squirrel_types.hpp"
>
</File>
<File
RelativePath=".\..\src\script\script_info.cpp"
>

@ -518,6 +518,7 @@ table/unmovable_land.h
table/water_land.h
# Script
script/fake_squirrel_types.hpp
script/script_info.cpp
script/script_info.hpp
script/script_scanner.cpp

@ -7,6 +7,7 @@
#include "../../core/overflowsafe_type.hpp"
#include "../../company_type.h"
#include "../../script/fake_squirrel_types.hpp"
/* Define all types here, so we don't have to include the whole _type.h maze */
typedef uint BridgeType; //!< Internal name, not of any use for you.
@ -30,12 +31,4 @@ typedef uint AIErrorType; //!< The types of errors inside the NoAI framework.
typedef BridgeType BridgeID; //!< The ID of a bridge.
typedef uint16 SubsidyID; //!< The ID of a subsidy.
#ifndef _SQUIRREL_H_
/* Life becomes easier when we can tell about a function it needs the VM, but
* without really including 'squirrel.h'. */
typedef struct SQVM *HSQUIRRELVM; //!< Pointer to Squirrel Virtual Machine.
typedef int SQInteger; //!< Squirrel Integer.
typedef struct SQObject HSQOBJECT; //!< Squirrel Object (fake declare)
#endif
#endif /* AI_TYPES_HPP */

@ -0,0 +1,16 @@
/* $Id$ */
/** @file fake_squirrel_types.hpp Provides definitions for some squirrel types to prevent including squirrel.h in header files.*/
#ifndef FAKE_SQUIRREL_TYPES_HPP
#define FAKE_SQUIRREL_TYPES_HPP
#ifndef _SQUIRREL_H_
/* Life becomes easier when we can tell about a function it needs the VM, but
* without really including 'squirrel.h'. */
typedef struct SQVM *HSQUIRRELVM; //!< Pointer to Squirrel Virtual Machine.
typedef int SQInteger; //!< Squirrel Integer.
typedef struct SQObject HSQOBJECT; //!< Squirrel Object (fake declare)
#endif
#endif /* FAKE_SQUIRREL_TYPES_HPP */
Loading…
Cancel
Save