support a couple more types

Original commit message from CVS:
support a couple more types
This commit is contained in:
David I. Lehn 2002-10-04 05:39:24 +00:00
parent 88f16dfe8f
commit c6737f6a93
2 changed files with 10 additions and 4 deletions

View file

@ -22,5 +22,8 @@
import argtypes
#arg = argtypes.PointerArg('GstEvent')
#argtypes.matcher.register('GstEvent*', arg)
arg = argtypes.UInt64Arg()
argtypes.matcher.register('GstClockTime', arg)
arg = argtypes.Int64Arg()
argtypes.matcher.register('GstClockTimeDiff', arg)

View file

@ -22,5 +22,8 @@
import argtypes
#arg = argtypes.PointerArg('GstEvent')
#argtypes.matcher.register('GstEvent*', arg)
arg = argtypes.UInt64Arg()
argtypes.matcher.register('GstClockTime', arg)
arg = argtypes.Int64Arg()
argtypes.matcher.register('GstClockTimeDiff', arg)