diff options
author | Benoit Germain <bnt.germain@gmail.com> | 2013-10-02 09:38:57 +0200 |
---|---|---|
committer | Benoit Germain <bnt.germain@gmail.com> | 2013-10-02 09:38:57 +0200 |
commit | 24f7fb84e3fc1bd5ee42111957c843d59e143d10 (patch) | |
tree | 2bbccba9fa05c264d5a935828134bad63c0eb4d5 | |
parent | 8f550701c7181c4d6352674b502c864d52e848ab (diff) | |
download | lanes-24f7fb84e3fc1bd5ee42111957c843d59e143d10.tar.gz lanes-24f7fb84e3fc1bd5ee42111957c843d59e143d10.tar.bz2 lanes-24f7fb84e3fc1bd5ee42111957c843d59e143d10.zip |
GCC compilation error fixv3.6.6
-rw-r--r-- | src/tools.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tools.h b/src/tools.h index bf48f1f..1113131 100644 --- a/src/tools.h +++ b/src/tools.h | |||
@@ -89,16 +89,16 @@ typedef struct { | |||
89 | void *deep; | 89 | void *deep; |
90 | } DEEP_PRELUDE; | 90 | } DEEP_PRELUDE; |
91 | 91 | ||
92 | void luaG_push_proxy( lua_State *L, luaG_IdFunction idfunc, DEEP_PRELUDE *deep_userdata); | ||
93 | void luaG_inter_copy_package( lua_State* L, lua_State* L2, int _idx, enum eLookupMode mode_); | ||
94 | |||
95 | enum eLookupMode | 92 | enum eLookupMode |
96 | { | 93 | { |
97 | eLM_LaneBody, // send the lane body directly from the source to the destination lane | 94 | eLM_LaneBody, // send the lane body directly from the source to the destination lane |
98 | eLM_ToKeeper, // send a function from a lane to a keeper state | 95 | eLM_ToKeeper, // send a function from a lane to a keeper state |
99 | eLM_FromKeeper, // send a function from a keeper state to a lane | 96 | eLM_FromKeeper // send a function from a keeper state to a lane |
100 | }; | 97 | }; |
101 | 98 | ||
99 | void luaG_push_proxy( lua_State *L, luaG_IdFunction idfunc, DEEP_PRELUDE *deep_userdata); | ||
100 | void luaG_inter_copy_package( lua_State* L, lua_State* L2, int _idx, enum eLookupMode mode_); | ||
101 | |||
102 | int luaG_inter_copy( lua_State *L, lua_State *L2, uint_t n, enum eLookupMode mode_); | 102 | int luaG_inter_copy( lua_State *L, lua_State *L2, uint_t n, enum eLookupMode mode_); |
103 | int luaG_inter_move( lua_State *L, lua_State *L2, uint_t n, enum eLookupMode mode_); | 103 | int luaG_inter_move( lua_State *L, lua_State *L2, uint_t n, enum eLookupMode mode_); |
104 | 104 | ||