![]() |
vitasdk
Documentation of the vitasdk
|
Exports for User. More...
Functions | |
| int | sceRegMgrGetKeyBin (const char *category, const char *name, void *buf, int size) |
| Get a key's information by category and name. | |
| int | sceRegMgrGetKeyInt (const char *category, const char *name, int *buf) |
| Get a key's information by category and name. | |
| int | sceRegMgrGetKeyStr (const char *category, const char *name, char *buf, const int size) |
| Get a key's information by category and name. | |
| int | sceRegMgrSetKeyBin (const char *category, const char *name, void *buf, int size) |
| Set a key's information by category and name. | |
| int | sceRegMgrSetKeyInt (const char *category, const char *name, int buf) |
| Set a key's information by category and name. | |
| int | sceRegMgrSetKeyStr (const char *category, const char *name, char *buf, const int size) |
| Set a key's information by category and name. | |
| int | sceRegMgrGetInitVals (const char *category, char *buf, const int elements_number) |
| Get all keys' initial information by category (from os0:kd/registry.db0) | |
| int | sceRegMgrGetKeys (const char *category, char *buf, const int elements_number) |
| Get all keys' information by category. | |
| int | sceRegMgrSetKeys (const char *category, char *buf, const int elements_number) |
| Set all keys' information by category. | |
| int | sceRegMgrSystemParamGetInt (const int id, int *buf) |
| Get a system param key's information by id. | |
| int | sceRegMgrSystemParamGetStr (const int id, char *buf, const int size) |
| Get a system param key's information by id. | |
| int | sceRegMgrGetRegVersion (int version, char *buf) |
| Get the registry version. | |
Exports for User.
Include the header file in your project:
Link the library to the executable:
| 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 |