From: John L. <jr...@us...> - 2007-06-19 13:58:19
|
Update of /cvsroot/wxlua/wxLua/modules/wxbind/src In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv31712/wxLua/modules/wxbind/src Modified Files: wx_bind.cpp Log Message: AMD64 fixes Index: wx_bind.cpp =================================================================== RCS file: /cvsroot/wxlua/wxLua/modules/wxbind/src/wx_bind.cpp,v retrieving revision 1.112 retrieving revision 1.113 diff -C2 -d -r1.112 -r1.113 *** wx_bind.cpp 18 Jun 2007 21:40:51 -0000 1.112 --- wx_bind.cpp 19 Jun 2007 13:58:16 -0000 1.113 *************** *** 4667,4672 **** #endif // (((defined(WXWIN_COMPATIBILITY_2_6) && WXWIN_COMPATIBILITY_2_6)) && (wxLUA_USE_wxAcceleratorTable && wxUSE_ACCEL)) && (wxLUA_USE_wxAcceleratorTable && wxUSE_ACCEL) ! #if defined(__WXMSW__) ! // %win %function wxWindow* wxGetActiveWindow() static int LUACALL wxLua_function_wxGetActiveWindow(lua_State *L) { --- 4667,4672 ---- #endif // (((defined(WXWIN_COMPATIBILITY_2_6) && WXWIN_COMPATIBILITY_2_6)) && (wxLUA_USE_wxAcceleratorTable && wxUSE_ACCEL)) && (wxLUA_USE_wxAcceleratorTable && wxUSE_ACCEL) ! #if wxCHECK_VERSION(2,8,4) ! // %wxchkver_2_8_4 %function wxWindow* wxGetActiveWindow() static int LUACALL wxLua_function_wxGetActiveWindow(lua_State *L) { *************** *** 4682,4686 **** static wxLuaBindCFunc s_wxluafunc_wxLua_function_wxGetActiveWindow[1] = {{ wxLua_function_wxGetActiveWindow, WXLUAMETHOD_CFUNCTION, 0, 0, s_wxluaargArray_None }}; ! #endif // defined(__WXMSW__) #if wxLUA_USE_wxApp --- 4682,4686 ---- static wxLuaBindCFunc s_wxluafunc_wxLua_function_wxGetActiveWindow[1] = {{ wxLua_function_wxGetActiveWindow, WXLUAMETHOD_CFUNCTION, 0, 0, s_wxluaargArray_None }}; ! #endif // wxCHECK_VERSION(2,8,4) #if wxLUA_USE_wxApp *************** *** 6460,6466 **** #endif // (((defined(WXWIN_COMPATIBILITY_2_6) && WXWIN_COMPATIBILITY_2_6)) && (wxLUA_USE_wxAcceleratorTable && wxUSE_ACCEL)) && (wxLUA_USE_wxAcceleratorTable && wxUSE_ACCEL) ! #if defined(__WXMSW__) { "wxGetActiveWindow", WXLUAMETHOD_CFUNCTION, s_wxluafunc_wxLua_function_wxGetActiveWindow, 1, NULL }, ! #endif // defined(__WXMSW__) #if wxLUA_USE_wxApp --- 6460,6466 ---- #endif // (((defined(WXWIN_COMPATIBILITY_2_6) && WXWIN_COMPATIBILITY_2_6)) && (wxLUA_USE_wxAcceleratorTable && wxUSE_ACCEL)) && (wxLUA_USE_wxAcceleratorTable && wxUSE_ACCEL) ! #if wxCHECK_VERSION(2,8,4) { "wxGetActiveWindow", WXLUAMETHOD_CFUNCTION, s_wxluafunc_wxLua_function_wxGetActiveWindow, 1, NULL }, ! #endif // wxCHECK_VERSION(2,8,4) #if wxLUA_USE_wxApp |