The iPhone Wiki is no longer updated. Visit this article on The Apple Wiki for current information. |
memz_create
Decompilation
#define kMemzImageContainer 0x4D656D7A MemzDescriptor* memz_create(unsigned char* address, unsigned int size, unsigned int flags) { MemzDescriptor* memz = (MemzDescriptor*) malloc(sizeof(MemzDescriptor)); if(memz != NULL) { memz->fileSize = size; memz->imageSize = size; memz->type = kMemzImageContainer; memz->flags = flags; memz->address = address; } return memz; }