Example #1
0
 def fromString(self, data, soFar=0):
     retVal = NDRSTRUCT.fromString(self, data, soFar)
     # self.dumpRaw()
     return retVal
Example #2
0
 def fromString(self, data, soFar = 0):
     retVal = NDRSTRUCT.fromString(self, data, soFar)
     #self.dumpRaw()
     return retVal
Example #3
0
 def fromString(self, data, soFar=0):
     # Here we're changing the struct so we can represent a linked list with NDR
     self.fields["pNextEntInf"] = PREPLENTINFLIST(isNDR64=self._isNDR64)
     retVal = NDRSTRUCT.fromString(self, data, soFar)
     return retVal
Example #4
0
 def fromString(self, data, soFar = 0 ):
     # Here we're changing the struct so we can represent a linked list with NDR
     self.fields['pNextEntInf'] = PREPLENTINFLIST(isNDR64 = self._isNDR64)
     retVal = NDRSTRUCT.fromString(self, data, soFar)
     return retVal