vitasdk
Documentation of the vitasdk
|
Exports for User.
Include the header file in your project:
Link the library to the executable:
Functions | |
int | sceRegMgrGetKeyBin (const char *category, const char *name, void *buf, int size) |
Get a key's information by category and name. More... | |
int | sceRegMgrGetKeyInt (const char *category, const char *name, int *buf) |
Get a key's information by category and name. More... | |
int | sceRegMgrGetKeyStr (const char *category, const char *name, char *buf, const int size) |
Get a key's information by category and name. More... | |
int | sceRegMgrSetKeyBin (const char *category, const char *name, void *buf, int size) |
Set a key's information by category and name. More... | |
int | sceRegMgrSetKeyInt (const char *category, const char *name, int buf) |
Set a key's information by category and name. More... | |
int | sceRegMgrSetKeyStr (const char *category, const char *name, char *buf, const int size) |
Set a key's information by category and name. More... | |
int | sceRegMgrGetInitVals (const char *category, char *buf, const int elements_number) |
Get all keys' initial information by category (from os0:kd/registry.db0) More... | |
int | sceRegMgrGetKeys (const char *category, char *buf, const int elements_number) |
Get all keys' information by category. More... | |
int | sceRegMgrSetKeys (const char *category, char *buf, const int elements_number) |
Set all keys' information by category. More... | |
int | sceRegMgrSystemParamGetInt (const int id, int *buf) |
Get a system param key's information by id. More... | |
int | sceRegMgrSystemParamGetStr (const int id, char *buf, const int size) |
Get a system param key's information by id. More... | |
int | sceRegMgrGetRegVersion (int version, char *buf) |
Get the registry version. More... | |
int sceRegMgrGetKeyBin | ( | const char * | category, |
const char * | name, | ||
void * | buf, | ||
int | size | ||
) |
Get a key's information by category and name.
category | - The path to the directory to be opened (e.g. /CONFIG/SYSTEM) |
name | - Name of the key |
buf | - Pointer to a buffer to hold the value |
size | - The size of the buffer |
int sceRegMgrGetKeyInt | ( | const char * | category, |
const char * | name, | ||
int * | buf | ||
) |
Get a key's information by category and name.
category | - The path to the directory to be opened (e.g. /CONFIG/SYSTEM) |
name | - Name of the key |
buf | - Pointer to a int buffer to hold the value |
int sceRegMgrGetKeyStr | ( | const char * | category, |
const char * | name, | ||
char * | buf, | ||
const int | size | ||
) |
Get a key's information by category and name.
category | - The path to the directory to be opened (e.g. /CONFIG/SYSTEM) |
name | - Name of the key |
buf | - Pointer to a char buffer to hold the value |
size | - The size of the buffer |
int sceRegMgrSetKeyBin | ( | const char * | category, |
const char * | name, | ||
void * | buf, | ||
int | size | ||
) |
Set a key's information by category and name.
category | - The path to the directory to be opened (e.g. /CONFIG/SYSTEM) |
name | - Name of the key |
buf | - Pointer to a buffer to hold the value |
size | - The size of the buffer |
int sceRegMgrSetKeyInt | ( | const char * | category, |
const char * | name, | ||
int | buf | ||
) |
Set a key's information by category and name.
category | - The path to the directory to be opened (e.g. /CONFIG/SYSTEM) |
name | - Name of the key |
buf | - Pointer to an int buffer to hold the value |
int sceRegMgrSetKeyStr | ( | const char * | category, |
const char * | name, | ||
char * | buf, | ||
const int | size | ||
) |
Set a key's information by category and name.
category | - The path to the directory to be opened (e.g. /CONFIG/SYSTEM) |
name | - Name of the key |
buf | - Pointer to a char buffer to hold the value |
size | - The size of the buffer |
int sceRegMgrGetInitVals | ( | const char * | category, |
char * | buf, | ||
const int | elements_number | ||
) |
Get all keys' initial information by category (from os0:kd/registry.db0)
category | - The path to the directory to be opened (e.g. /CONFIG/SYSTEM) |
buf[out] | - Pointer to a char buffer to hold the values |
elements_number | - The number of elements of the buffer |
int sceRegMgrGetKeys | ( | const char * | category, |
char * | buf, | ||
const int | elements_number | ||
) |
Get all keys' information by category.
category | - The path to the directory to be opened (e.g. /CONFIG/SYSTEM) |
buf[out] | - Pointer to a char buffer to hold the values |
elements_number | - The number of elements of the buffer |
int sceRegMgrSetKeys | ( | const char * | category, |
char * | buf, | ||
const int | elements_number | ||
) |
Set all keys' information by category.
category | - The path to the directory to be opened (e.g. /CONFIG/SYSTEM) |
buf[out] | - Pointer to a char buffer that holds the values |
elements_number | - The number of elements of the buffer |
int sceRegMgrSystemParamGetInt | ( | const int | id, |
int * | buf | ||
) |
Get a system param key's information by id.
id | - The id of the key |
buf[out] | - Pointer to an int to hold the value |
int sceRegMgrSystemParamGetStr | ( | const int | id, |
char * | buf, | ||
const int | size | ||
) |
Get a system param key's information by id.
id | - The id of the key |
buf[out] | - Pointer to a char buffer to hold the value |
size | - The size of the buffer |
int sceRegMgrGetRegVersion | ( | int | version, |
char * | buf | ||
) |
Get the registry version.
id | - The id of the key |
buf[out] | - Pointer to a char buffer to hold the value |