Здравствуйте, Nuzhny, Вы писали:
N>А реализация функции luaopen_test в каком cpp файле находится? Покажи её, пожалуйста.
Она генерится SWIG и находится в test_wrap.cpp, который я подключаю к проекту:
#define SWIG_init luaopen_test
/* Forward declaration of where the user's %init{} gets inserted */
void SWIG_init_user(lua_State* L );
#ifdef __cplusplus
extern "C" {
#endif
/* this is the initialization function
added at the very end of the code
the function is always called SWIG_init, but an eariler #define will rename it
*/
SWIGEXPORT int SWIG_init(lua_State* L)
{
...
}