diff options
author | Reiko Asakura | 2021-03-26 18:20:11 -0400 |
---|---|---|
committer | Reiko Asakura | 2021-03-26 18:20:11 -0400 |
commit | 5391e1eaa5494dd16de6e2680f9c942025b85e36 (patch) | |
tree | bdcdf81cb888dfe3e26415c4837b22c42759ee5a /include/user | |
parent | Add inline forwarder for sysmodule with arg (diff) | |
download | vds-libraries-5391e1eaa5494dd16de6e2680f9c942025b85e36.tar.gz |
Add NIDs to SceNpCommonPs4
Every name is from the PS4 SceNpCommon except for
sceNpGetSystemClockLowUsec.
Diffstat (limited to 'include/user')
-rw-r--r-- | include/user/np/np_common_ps4.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/include/user/np/np_common_ps4.h b/include/user/np/np_common_ps4.h new file mode 100644 index 0000000..0265bf4 --- /dev/null +++ b/include/user/np/np_common_ps4.h @@ -0,0 +1,26 @@ +/* + Vita Development Suite Libraries +*/ + +#ifndef _VDSUITE_USER_NP_NP_COMMON_PS4_H +#define _VDSUITE_USER_NP_NP_COMMON_PS4_H + +#include <scetypes.h> + +#if defined(_LANGUAGE_C_PLUS_PLUS)||defined(__cplusplus)||defined(c_plusplus) +extern "C" { +#endif /* defined(_LANGUAGE_C_PLUS_PLUS)||defined(__cplusplus)||defined(c_plusplus) */ + +SceInt32 sceNpGetSystemClockUsec(SceUInt64 *pClock); + +SceInt32 sceNpGetSystemClockLowUsec(SceUInt32 *pClock); + +SceInt32 sceNpDbgDumpText(const char *pText, SceSize size); + +SceInt32 sceNpDbgDumpBinary(const void *pBinary, SceSize size); + +#if defined(_LANGUAGE_C_PLUS_PLUS)||defined(__cplusplus)||defined(c_plusplus) +} +#endif /* defined(_LANGUAGE_C_PLUS_PLUS)||defined(__cplusplus)||defined(c_plusplus) */ + +#endif /* _VDSUITE_USER_NP_NP_COMMON_PS4_H */ |