summaryrefslogtreecommitdiff
path: root/include/user/paf/lowlayer.h
diff options
context:
space:
mode:
authorGrapheneCt2021-07-15 18:41:46 -0400
committerReiko Asakura2021-07-15 19:07:55 -0400
commit68c1219eb513acc2f24b2d41f84ded4cc2e9fab6 (patch)
treed96eb4a38a4eef4e6113c79285c93b2a27abbc9a /include/user/paf/lowlayer.h
parentAdd prototype for sceKernelIsAccessibleRangeProc (diff)
downloadvds-libraries-68c1219eb513acc2f24b2d41f84ded4cc2e9fab6.tar.gz
Update ScePaf
Diffstat (limited to 'include/user/paf/lowlayer.h')
-rw-r--r--include/user/paf/lowlayer.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/include/user/paf/lowlayer.h b/include/user/paf/lowlayer.h
new file mode 100644
index 0000000..f92d871
--- /dev/null
+++ b/include/user/paf/lowlayer.h
@@ -0,0 +1,25 @@
+/*
+ Vita Development Suite Libraries
+*/
+
+#ifndef _VDSUITE_USER_PAF_LOWLAYER_H
+#define _VDSUITE_USER_PAF_LOWLAYER_H
+
+#include <libdeflt.h>
+#include <kernel.h>
+#include <paf/common.h>
+
+namespace paf {
+ namespace lowlayer {
+
+ class Deflt
+ {
+ public:
+
+ static SceInt32 Decompress(ScePVoid pDst, SceUInt32 uiBufSize, const ScePVoid pSrcDeflate, const ScePVoid *ppNext);
+ };
+
+ }
+}
+
+#endif /* _VDSUITE_USER_PAF_LOWLAYER_H */