本文整理汇总了Python中vstruct.VStruct.__init__方法的典型用法代码示例。如果您正苦于以下问题:Python VStruct.__init__方法的具体用法?Python VStruct.__init__怎么用?Python VStruct.__init__使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类vstruct.VStruct
的用法示例。
在下文中一共展示了VStruct.__init__方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from vstruct import VStruct [as 别名]
# 或者: from vstruct.VStruct import __init__ [as 别名]
def __init__(self,shape=1):
VStruct.__init__(self)
self.Ratio = v_uint8()
if shape <= 2:
self.Color = RGB()
else:
self.Color = RGBA()
示例2: __init__
# 需要导入模块: from vstruct import VStruct [as 别名]
# 或者: from vstruct.VStruct import __init__ [as 别名]
def __init__(self):
VStruct.__init__(self)
self.msgsize = v_uint16(bigend=True)
self.msgtype = v_uint16(bigend=True)
self.pptpmagic = v_uint32(bigend=True)
self.ctrltype = v_uint16(bigend=True)
self.res0 = v_uint16(bigend=True)
示例3: __init__
# 需要导入模块: from vstruct import VStruct [as 别名]
# 或者: from vstruct.VStruct import __init__ [as 别名]
def __init__(self):
VStruct.__init__(self)
self.a = v_uint8()
self.b = v_uint16()
self.c = v_uint32()
self.d = v_uint8()
self.e = VArray((v_uint32(), v_uint32(), v_uint32(), v_uint32()))
示例4: __init__
# 需要导入模块: from vstruct import VStruct [as 别名]
# 或者: from vstruct.VStruct import __init__ [as 别名]
def __init__(self):
VStruct.__init__(self)
self.opcode = v_uint32(enum=PATCH_ACTIONS)
self.action_size = v_uint32() # size of entire structure
self.pattern_size = v_uint32() # size of pattern field
self.rva = v_uint32()
self.unknown = v_uint32()
self.module_name = v_wstr(size=MAX_MODULE)
self.pattern = v_bytes(size=0)
示例5: __init__
# 需要导入模块: from vstruct import VStruct [as 别名]
# 或者: from vstruct.VStruct import __init__ [as 别名]
def __init__(self):
VStruct.__init__(self)