vitasdk
Documentation of the vitasdk
registrymgr.h
Go to the documentation of this file.
1
6#ifndef _PSP2KERN_REGISTRYMGR_H_
7#define _PSP2KERN_REGISTRYMGR_H_
8
9#include <psp2kern/types.h>
10
11#ifdef __cplusplus
12extern "C" {
13#endif
14
25int ksceRegMgrGetKeyBin(const char *category, const char *name, void *buf, SceSize size);
26
36int ksceRegMgrGetKeyInt(const char *category, const char *name, int *buf);
37
48int ksceRegMgrGetKeyStr(const char *category, const char *name, char *buf, SceSize size);
49
60int ksceRegMgrSetKeyBin(const char *category, const char *name, void *buf, SceSize size);
61
71int ksceRegMgrSetKeyInt(const char *category, const char *name, int buf);
72
83int ksceRegMgrSetKeyStr(const char *category, const char *name, char *buf, SceSize size);
84
85#ifdef __cplusplus
86}
87#endif
88
89#endif /* _PSP2KERN_REGISTRYMGR_H_ */
SceSize size
struct size(variable size)
Definition debug.h:0
int ksceRegMgrGetKeyStr(const char *category, const char *name, char *buf, SceSize size)
Get a key's information by category and name.
int ksceRegMgrGetKeyBin(const char *category, const char *name, void *buf, SceSize size)
Get a key's information by category and name.
int ksceRegMgrSetKeyInt(const char *category, const char *name, int buf)
Set a key's information by category and name.
int ksceRegMgrSetKeyStr(const char *category, const char *name, char *buf, SceSize size)
Set a key's information by category and name.
int ksceRegMgrGetKeyInt(const char *category, const char *name, int *buf)
Get a key's information by category and name.
int ksceRegMgrSetKeyBin(const char *category, const char *name, void *buf, SceSize size)
Set a key's information by category and name.
unsigned int SceSize
Definition types.h:56