diff options
Diffstat (limited to 'include/user/paf/lowlayer.h')
-rw-r--r-- | include/user/paf/lowlayer.h | 25 |
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 */ |