當前位置: 首頁>>代碼示例>>Python>>正文


Python vstruct.VStruct類代碼示例

本文整理匯總了Python中vstruct.VStruct的典型用法代碼示例。如果您正苦於以下問題:Python VStruct類的具體用法?Python VStruct怎麽用?Python VStruct使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了VStruct類的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: __init__

 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,代碼行數:7,代碼來源:swf.py

示例2: __init__

 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,代碼行數:7,代碼來源:pptp.py

示例3: __init__

 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,代碼行數:7,代碼來源:vstructui.py

示例4: __init__

 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,代碼行數:9,代碼來源:patchbits.py

示例5: vsAddField

 def vsAddField(self, name, value):
     if not isinstance(value, v_bits):
         raise Exception('VBitField *must* use v_bits() kids!')
     return VStruct.vsAddField(self, name, value)
開發者ID:demoray,項目名稱:vivisect,代碼行數:4,代碼來源:bitfield.py

示例6: __init__

 def __init__(self):
     VStruct.__init__(self)
開發者ID:demoray,項目名稱:vivisect,代碼行數:2,代碼來源:bitfield.py


注:本文中的vstruct.VStruct類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。