mirror of
https://github.com/joel16/PSP-Everest.git
synced 2024-11-26 21:10:39 +00:00
10 lines
284 B
C
10 lines
284 B
C
#ifndef ___UTILS_H___
|
|
#define ___UTILS_H___
|
|
|
|
int GetRegistryValue(const char *dir, const char *name, void *buf, int bufsize, int inttype);
|
|
int Random(int min, int max);
|
|
int utf82unicode(wchar_t *dest, char *src);
|
|
VlfText pspEverestPrintf(int x, int y, const char *text, ...);
|
|
|
|
#endif
|