|
REpsp2
PSP2 OS reverse engineering
|
Data Structures | |
| struct | SceUIDHeap |
| struct | SceUIDHeapClass |
| struct | SceKernelHeapHook |
Functions | |
| SceInt32 | UIDHeapCallAlloc (SceUIDHeap *pHeap, SceUInt32 size, ScePVoid *ppObject) |
| Allocate object from heap. | |
| SceInt32 | UIDHeapCallFree (SceUIDHeap *pHeap, ScePVoid pObject) |
| Free object from heap. | |
Generic heap interface
| SceInt32 UIDHeapCallAlloc | ( | SceUIDHeap * | pHeap, |
| SceUInt32 | size, | ||
| ScePVoid * | ppObject ) |
Allocate object from heap.
| pHeap | Heap object |
| size | Size of object to allocate |
| ppObject | Pointer to receive allocated object pointer |
| SCE_OK | Success |
| <SCE_OK | Error code |
Definition at line 5 of file uid_heap.c.
| SceInt32 UIDHeapCallFree | ( | SceUIDHeap * | pHeap, |
| ScePVoid | pObject ) |
Free object from heap.
| pHeap | Heap object |
| pObject | Pointer to object to free |
| SCE_OK | Success |
| <SCE_OK | Error code |
Definition at line 9 of file uid_heap.c.