예제 #1
0
 def readArray(self, address, basetype, count):
     bytes = self.readBytes(address, sizeof(basetype) * count)
     bytes = c_char_p(bytes)
     return bytes2array(bytes, basetype, count)
예제 #2
0
파일: process.py 프로젝트: haxkor/forkever
 def readArray(self, address, basetype, count):
     bytes = self.readBytes(address, sizeof(basetype) * count)
     bytes = c_char_p(bytes)
     return bytes2array(bytes, basetype, count)