当前位置: 首页>>代码示例>>Python>>正文


Python VStruct.__init__方法代码示例

本文整理汇总了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()
开发者ID:bat-serjo,项目名称:vivisect,代码行数:9,代码来源:swf.py

示例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)
开发者ID:BwRy,项目名称:vivisect,代码行数:9,代码来源:pptp.py

示例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()))
开发者ID:HerbDavisY2K,项目名称:python-pyqt5-vstructui,代码行数:9,代码来源:vstructui.py

示例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)
开发者ID:HerbDavisY2K,项目名称:python-pyqt5-vstructui,代码行数:11,代码来源:patchbits.py

示例5: __init__

# 需要导入模块: from vstruct import VStruct [as 别名]
# 或者: from vstruct.VStruct import __init__ [as 别名]
 def __init__(self):
     VStruct.__init__(self)
开发者ID:demoray,项目名称:vivisect,代码行数:4,代码来源:bitfield.py


注:本文中的vstruct.VStruct.__init__方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。