|
From: David B. <dav...@us...> - 2004-11-28 00:40:37
|
Update of /cvsroot/frontierkernel/Frontier/Common/headers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10392 Modified Files: Tag: sidewinder-branch lang.h langpython.h Log Message: enable usertalk to call python Index: lang.h =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/headers/lang.h,v retrieving revision 1.6 retrieving revision 1.6.2.1 diff -C2 -d -r1.6 -r1.6.2.1 *** lang.h 10 Nov 2004 18:18:24 -0000 1.6 --- lang.h 28 Nov 2004 00:40:19 -0000 1.6.2.1 *************** *** 27,31 **** #define langinclude /*so other includes can tell if we've been loaded*/ - #ifndef shelltypesinclude --- 27,30 ---- *************** *** 179,182 **** --- 178,183 ---- dividevalueop = 61, + pythonscriptop = 62, + cttreetypes } tytreetype; Index: langpython.h =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/headers/langpython.h,v retrieving revision 1.1.4.2 retrieving revision 1.1.4.3 diff -C2 -d -r1.1.4.2 -r1.1.4.3 *** langpython.h 23 Nov 2004 16:13:23 -0000 1.1.4.2 --- langpython.h 28 Nov 2004 00:40:19 -0000 1.1.4.3 *************** *** 29,32 **** --- 29,37 ---- boolean runstringverb(hdltreenode hp1, tyvaluerecord *v); + boolean pythongetdict(Handle htext, tyvaluerecord *tvr); + boolean callpython(hdltreenode htree, tyvaluerecord *vreturned); + boolean compilepython(Handle htext, tyvaluerecord *tvr); + boolean ispythonnode(hdltreenode, tyvaluerecord *); + boolean callpythonscript(tyvaluerecord, hdltreenode, bigstring, tyvaluerecord *); |