#include <psptypes.h>
Go to the source code of this file.
Functions | |
int | sceKernelVolatileMemLock (int unk, void **ptr, int *size) |
Allocate the extra 4megs of RAM. | |
int | sceKernelVolatileMemTryLock (int unk, void **ptr, int *size) |
Try and allocate the extra 4megs of RAM, will return an error if something has already allocated it. | |
int | sceKernelVolatileMemUnlock (void) |
Deallocate the extra 4 megs of RAM. |
int sceKernelVolatileMemLock | ( | int | unk, | |
void ** | ptr, | |||
int * | size | |||
) |
Allocate the extra 4megs of RAM.
unk | - No idea as it is never used, set to anything | |
ptr | - Pointer to a pointer to hold the address of the memory | |
size | - Pointer to an int which will hold the size of the memory |
int sceKernelVolatileMemTryLock | ( | int | unk, | |
void ** | ptr, | |||
int * | size | |||
) |
Try and allocate the extra 4megs of RAM, will return an error if something has already allocated it.
unk | - No idea as it is never used, set to anything | |
ptr | - Pointer to a pointer to hold the address of the memory | |
size | - Pointer to an int which will hold the size of the memory |
int sceKernelVolatileMemUnlock | ( | void | ) |
Deallocate the extra 4 megs of RAM.