Update of /cvsroot/wxlua/wxLua/modules/wxluadebug/include
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv22233/wxLua/modules/wxluadebug/include
Modified Files:
wxldebug.h wxlstack.h
Log Message:
Add wxShutdown()
Rename lua -> Lua
Index: wxldebug.h
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxluadebug/include/wxldebug.h,v
retrieving revision 1.38
retrieving revision 1.39
diff -C2 -d -r1.38 -r1.39
*** wxldebug.h 25 Jun 2007 16:07:58 -0000 1.38
--- wxldebug.h 7 Aug 2007 20:23:25 -0000 1.39
***************
*** 1,4 ****
/////////////////////////////////////////////////////////////////////////////
! // Purpose: lua and wxLua debugging code
// Author: J. Winwood, John Labenski
// Created: June 2003
--- 1,4 ----
/////////////////////////////////////////////////////////////////////////////
! // Purpose: Lua and wxLua debugging code
// Author: J. Winwood, John Labenski
// Created: June 2003
***************
*** 142,146 ****
// These functions are static to allow them to be used in other places to
! // give a consistent feel to the display of lua values.
// Get a human readable string name of the lua_type(L, index), the
--- 142,146 ----
// These functions are static to allow them to be used in other places to
! // give a consistent feel to the display of Lua values.
// Get a human readable string name of the lua_type(L, index), the
***************
*** 152,158 ****
// Convert the number to either "true" or "false" (eg !0 or 0)
static wxString MakeBoolean(int num);
! // Get a wxString description about the table at the index in the lua stack
static wxString GetTableInfo(const wxLuaState& wxlState, int index);
! // Get a wxString description about user data at the index in the lua stack
// if full then try to look up the name of the user data from the bindings
static wxString GetUserDataInfo(const wxLuaState& wxlState, int index, bool full = true);
--- 152,158 ----
// Convert the number to either "true" or "false" (eg !0 or 0)
static wxString MakeBoolean(int num);
! // Get a wxString description about the table at the index in the Lua stack
static wxString GetTableInfo(const wxLuaState& wxlState, int index);
! // Get a wxString description about user data at the index in the Lua stack
// if full then try to look up the name of the user data from the bindings
static wxString GetUserDataInfo(const wxLuaState& wxlState, int index, bool full = true);
Index: wxlstack.h
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxluadebug/include/wxlstack.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** wxlstack.h 26 Jul 2007 18:56:39 -0000 1.5
--- wxlstack.h 7 Aug 2007 20:23:25 -0000 1.6
***************
*** 1,5 ****
/////////////////////////////////////////////////////////////////////////////
// Name: wxLuaStackTree.h
! // Purpose: Interface to display the lua stack in wxLua
// Author: J. Winwood, John Labenski
// Created: April 2002
--- 1,5 ----
/////////////////////////////////////////////////////////////////////////////
// Name: wxLuaStackTree.h
! // Purpose: Interface to display the Lua stack in wxLua
// Author: J. Winwood, John Labenski
// Created: April 2002
|