summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReiko Asakura2021-03-11 15:32:16 -0500
committerReiko Asakura2021-03-11 15:32:16 -0500
commitc67c0adce99345cbab760be179ec9d8be7c8b77a (patch)
tree9b4a7d1515e9eaa6d744d98e725045c80e1eda21
parentAdd sceKernelWaitExceptionCBForMono (diff)
downloadvds-libraries-c67c0adce99345cbab760be179ec9d8be7c8b77a.tar.gz
Add prototypes in clockgen.h
-rw-r--r--include/kernel/clockgen.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/kernel/clockgen.h b/include/kernel/clockgen.h
index fbc14c9..83d831f 100644
--- a/include/kernel/clockgen.h
+++ b/include/kernel/clockgen.h
@@ -12,6 +12,8 @@
extern "C" {
#endif /* defined(_LANGUAGE_C_PLUS_PLUS)||defined(__cplusplus)||defined(c_plusplus) */
+int sceClockgenGetRevision(void);
+
// idx < 3
int sceClockgenGetRegValue(uint32_t idx);
@@ -23,6 +25,20 @@ int sceClockgenSetSpectrumSpreading(int mode);
// changes behaviour of sceClockgenInit(), default true
int sceClockgenSetProtocol(bool protocol);
+int sceClockgenInit(void);
+
+int sceClockgenAudioClkEnable(void);
+
+int sceClockgenAudioClkDisable(void);
+
+int sceClockgenCameraClkEnable(void);
+
+int sceClockgenCameraClkDisable(void);
+
+int sceClockgenWlanBtClkEnable(void);
+
+int sceClockgenWlanBtClkDisable(void);
+
#if defined(_LANGUAGE_C_PLUS_PLUS)||defined(__cplusplus)||defined(c_plusplus)
}
#endif /* defined(_LANGUAGE_C_PLUS_PLUS)||defined(__cplusplus)||defined(c_plusplus) */