forked from mirrors/linphone-iphone
C++ wrapper: mask support
This commit is contained in:
parent
6ef2f2a96f
commit
2f64a54b23
1 changed files with 2 additions and 0 deletions
|
|
@ -799,6 +799,8 @@ class CParser(object):
|
|||
absType.isref = cType.completeType.endswith('*')
|
||||
elif cType.ctype == self.cListType:
|
||||
absType = ListType(cType.containedType)
|
||||
elif cType.ctype.endswith('Mask'):
|
||||
absType = BaseType('integer', isUnsigned=True)
|
||||
else:
|
||||
raise Error('Unknown C type \'{0}\''.format(cType.ctype))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue