Eolian: Update TypeType enum

This commit is contained in:
Kai Huuhko 2014-07-25 23:19:04 +03:00
parent 7a3081d12d
commit 00eaaead83
2 changed files with 6 additions and 1 deletions

View File

@ -29,8 +29,11 @@ cdef extern from "Eolian.h":
EOLIAN_TYPE_UNKNOWN_TYPE
EOLIAN_TYPE_VOID
EOLIAN_TYPE_REGULAR
EOLIAN_TYPE_REGULAR_STRUCT
EOLIAN_TYPE_POINTER
EOLIAN_TYPE_FUNCTION
EOLIAN_TYPE_STRUCT
EOLIAN_TYPE_ALIAS
#Class type used to extract information on classes
ctypedef struct _Eolian_Class

View File

@ -44,9 +44,11 @@ class TypeType(IntEnum):
UNKNOWN = EOLIAN_TYPE_UNKNOWN_TYPE
VOID = EOLIAN_TYPE_VOID
REGULAR = EOLIAN_TYPE_REGULAR
REGULAR_STRUCT = EOLIAN_TYPE_REGULAR_STRUCT
POINTER = EOLIAN_TYPE_POINTER
FUNCTION = EOLIAN_TYPE_FUNCTION
STRUCT = EOLIAN_TYPE_STRUCT
ALIAS = EOLIAN_TYPE_ALIAS
cdef class EinaIterator(object):