|
From: David B. <dav...@us...> - 2004-11-22 03:53:22
|
Update of /cvsroot/frontierkernel/Frontier/Common/headers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28115/Common/headers Modified Files: kernelverbdefs.h langpython.h Log Message: Initial checkin of Sidewinder code. Moved contents of sidewinder.[ch] into langpython.[ch], removing previous Python implementation. Added Python.framework to the XCode project. Added resource definitions for the python kernel verbs, currently Mac only and not #ifdef'd. Need to add Windows resource definitions. Index: langpython.h =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/headers/langpython.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** langpython.h 9 Oct 2004 20:58:04 -0000 1.1 --- langpython.h 22 Nov 2004 03:52:55 -0000 1.2 *************** *** 28,32 **** ! extern boolean langrunpythonscript (hdltreenode hp1, tyvaluerecord *v); --- 28,33 ---- ! boolean runstringverb(hdltreenode hp1, tyvaluerecord *v); ! boolean pythoninitverbs(void); Index: kernelverbdefs.h =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/headers/kernelverbdefs.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** kernelverbdefs.h 9 Oct 2004 20:56:38 -0000 1.1 --- kernelverbdefs.h 22 Nov 2004 03:52:55 -0000 1.2 *************** *** 48,50 **** --- 48,51 ---- #define idquicktimeverbs 1022 /*7.0b4 PBS: QuickTime Player window verbs*/ #define idregexpverbs 1023 /*2003-04-22 AR: regular expression verbs*/ + #define idpythonverbs 1024 /* 2004-11-3 ddb: added python verbs */ |