本文整理匯總了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()
示例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)
示例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()))
示例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)
示例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)
示例6: __init__
def __init__(self):
VStruct.__init__(self)