From: John L. <jr...@us...> - 2008-01-31 05:09:22
|
Update of /cvsroot/wxlua/wxLua/docs In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv1826/wxLua/docs Modified Files: wxluaref.html Log Message: Add functions to check if objects are gc, tracked, or refed in Lua. Index: wxluaref.html =================================================================== RCS file: /cvsroot/wxlua/wxLua/docs/wxluaref.html,v retrieving revision 1.49 retrieving revision 1.50 diff -C2 -d -r1.49 -r1.50 *** wxluaref.html 31 Jan 2008 04:34:03 -0000 1.49 --- wxluaref.html 31 Jan 2008 05:09:19 -0000 1.50 *************** *** 24854,24857 **** --- 24854,24866 ---- <font color=#AA0000><i>%function</i> LuaTable GetTrackedWinDestroyCallbackInfo(bool as_string = false)</font><br> <br> + <font color=#009900>// Is the wxLua userdata object on the list to be garbage collected by Lua?</font><br> + <font color=#AA0000><i>%function</i> bool isgcobject(void* object)</font><br> + <br> + <font color=#009900>// Is the wxLua userdata object on the list of tracked objects?</font><br> + <font color=#AA0000><i>%function</i> bool istrackedobject(void* object)</font><br> + <br> + <font color=#009900>// Is the wxLua object refed by wxLua</font><br> + <font color=#AA0000><i>%function</i> bool isrefed(void* object)</font><br> + <br> <font color=#009900>// ---------------------------------------------------------------------------</font><br> <font color=#009900>// Type information about the bindings or current userdata</font><br> *************** *** 25036,25040 **** int RunString(const <a href="#wxString">wxString</a> &script, const <a href="#wxString">wxString</a>& name = "")<br> bool IsRunning() const<br> - <br> */</font><br> </blockquote><font color=#DD0000><font color=#DD0000><i>%endclass</i></font></font><br> --- 25045,25048 ---- |