[opendemo-cvs] CVS: opendemo/tools/odcut/odfile_expat odfile_expat.xs,1.3,1.4
Status: Beta
Brought to you by:
girlich
From: Uwe G. <gi...@us...> - 2004-03-30 08:19:54
|
Update of /cvsroot/opendemo/opendemo/tools/odcut/odfile_expat In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3551 Modified Files: odfile_expat.xs Log Message: time, sequence, snapshot implemented get_name() -> name() renamed Index: odfile_expat.xs =================================================================== RCS file: /cvsroot/opendemo/opendemo/tools/odcut/odfile_expat/odfile_expat.xs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** odfile_expat.xs 29 Mar 2004 19:42:00 -0000 1.3 --- odfile_expat.xs 30 Mar 2004 08:08:20 -0000 1.4 *************** *** 30,37 **** char* ! get_name(self) odfile_expat *self; CODE: ! RETVAL = ofe_get_name(self); OUTPUT: RETVAL --- 30,78 ---- char* ! name(self) odfile_expat *self; CODE: ! RETVAL = ofe_name(self); ! OUTPUT: ! RETVAL ! ! ! int ! snapshotc(self) ! odfile_expat *self; ! CODE: ! RETVAL = ofe_snapshotc(self); ! OUTPUT: ! RETVAL ! ! ! int ! firstTime(self, ...) ! odfile_expat *self; ! CODE: ! if (items > 1) { ! int firstTime = (int)SvIV(ST(1)); ! ofe_set_firstTime(self, firstTime); ! RETVAL = 0; ! } ! else { ! RETVAL = ofe_firstTime(self); ! } ! OUTPUT: ! RETVAL ! ! ! int ! firstSequence(self, ...) ! odfile_expat *self; ! CODE: ! if (items > 1) { ! int firstSequence = (int)SvIV(ST(1)); ! ofe_set_firstSequence(self, firstSequence); ! RETVAL = 0; ! } ! else { ! RETVAL = ofe_firstSequence(self); ! } OUTPUT: RETVAL |