Update of /cvsroot/wxlua/wxLua/modules/wxluadebug/include
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1493/wxLua/modules/wxluadebug/include
Modified Files:
wxldebug.h
Log Message:
reorder libs in apps.bkl and rebake, (remove -- in bkl, got error)
pulled in generic code in wxLuaInterface into the wxLuaState
Index: wxldebug.h
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxluadebug/include/wxldebug.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** wxldebug.h 29 Nov 2005 05:45:10 -0000 1.4
--- wxldebug.h 29 Nov 2005 23:52:12 -0000 1.5
***************
*** 129,158 ****
wxLuaDebugData *GetGlobalData();
- lua_State *GetLuaState() const { return m_wxlState.GetLuaState(); }
wxLuaState GetwxLuaState() const { return m_wxlState; }
private:
! int GetStack(int nIndex, lua_Debug *luaDebug);
! bool GetInfo(const wxString &opts, lua_Debug *luaDebug);
! wxString GetLocal(lua_Debug *luaDebug, int index);
! void GetGlobals();
! int GetTop();
! int Type(int index);
! double ToNumber(int index);
! int ToBoolean(int index);
! wxString ToString(int index);
! const void *ToPointer(int index);
! bool IsCFunction(int index);
! const void *ToCFunction(int index);
! const void *ToUserData(int index);
! int GetTag(int index);
! int GetN(int index);
! int Ref();
! int GetRef(int ref);
! void Pop(int count);
! void PushNil();
! void PushValue(int index);
! int Next(int index);
! bool IsLuaTable(int index) const;
wxString GetTableInfo(int index);
--- 129,136 ----
wxLuaDebugData *GetGlobalData();
wxLuaState GetwxLuaState() const { return m_wxlState; }
private:
! int Ref();
wxString GetTableInfo(int index);
|