def fromString(self, data, soFar=0): retVal = NDRSTRUCT.fromString(self, data, soFar) # self.dumpRaw() return retVal
def fromString(self, data, soFar = 0): retVal = NDRSTRUCT.fromString(self, data, soFar) #self.dumpRaw() return retVal
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
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