|
From: Andre R. <and...@us...> - 2004-11-23 16:13:33
|
Update of /cvsroot/frontierkernel/Frontier/Common/headers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22396 Modified Files: Tag: sidewinder-branch kernelverbs.h langpython.h Log Message: Moved definition of pythoninitverbs from langpython.h to kernelverbs.h where all the prototypes for all the other kernel verb initialization functions live. Index: kernelverbs.h =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/headers/kernelverbs.h,v retrieving revision 1.1 retrieving revision 1.1.4.1 diff -C2 -d -r1.1 -r1.1.4.1 *** kernelverbs.h 9 Oct 2004 20:56:44 -0000 1.1 --- kernelverbs.h 23 Nov 2004 16:13:23 -0000 1.1.4.1 *************** *** 50,52 **** extern boolean quicktimeinitverbs (void); /*langquicktime.c*/ ! extern boolean regexpinitverbs (void); /* langregexp.c */ \ No newline at end of file --- 50,55 ---- extern boolean quicktimeinitverbs (void); /*langquicktime.c*/ ! extern boolean regexpinitverbs (void); /*langregexp.c*/ ! ! extern boolean pythoninitverbs(void); /*langpython.c*/ ! Index: langpython.h =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/headers/langpython.h,v retrieving revision 1.1.4.1 retrieving revision 1.1.4.2 diff -C2 -d -r1.1.4.1 -r1.1.4.2 *** langpython.h 22 Nov 2004 05:14:00 -0000 1.1.4.1 --- langpython.h 23 Nov 2004 16:13:23 -0000 1.1.4.2 *************** *** 29,33 **** boolean runstringverb(hdltreenode hp1, tyvaluerecord *v); - boolean pythoninitverbs(void); --- 29,32 ---- |