struct: move void_array definition to luaa

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2009-04-17 16:23:40 +02:00
parent 6fe35b1387
commit a415926b78
2 changed files with 2 additions and 2 deletions

2
luaa.c
View File

@ -70,6 +70,8 @@ extern const struct luaL_reg awesome_wibox_meta[];
extern const struct luaL_reg awesome_key_methods[]; extern const struct luaL_reg awesome_key_methods[];
extern const struct luaL_reg awesome_key_meta[]; extern const struct luaL_reg awesome_key_meta[];
DO_ARRAY(const void *, void, DO_NOTHING)
/** Quit awesome. /** Quit awesome.
* \param L The Lua VM state. * \param L The Lua VM state.
* \return The number of elements pushed on stack. * \return The number of elements pushed on stack.

View File

@ -146,8 +146,6 @@ struct awesome_t
SnDisplay *sndisplay; SnDisplay *sndisplay;
}; };
DO_ARRAY(const void *, void, DO_NOTHING)
extern awesome_t globalconf; extern awesome_t globalconf;
#endif #endif