diff options
author | xyzz | 2016-08-29 20:03:08 +0200 |
---|---|---|
committer | GitHub | 2016-08-29 20:03:08 +0200 |
commit | c4ad3e949f8db5ad05d50591c039688286394036 (patch) | |
tree | 0d78b02a6630909b2b15f87ca05e239d67872722 /include/user/kernel/modulemgr.h | |
parent | Fixed typo (diff) | |
parent | Added missing __cplusplus guards. (diff) | |
download | vds-libraries-c4ad3e949f8db5ad05d50591c039688286394036.tar.gz |
Merge pull request #29 from codestation/master
Added missing __cplusplus guards.
Diffstat (limited to 'include/user/kernel/modulemgr.h')
-rw-r--r-- | include/user/kernel/modulemgr.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/user/kernel/modulemgr.h b/include/user/kernel/modulemgr.h index baf9a75..ab41eba 100644 --- a/include/user/kernel/modulemgr.h +++ b/include/user/kernel/modulemgr.h @@ -3,6 +3,10 @@ #include <psp2/types.h> +#ifdef __cplusplus +extern "C" { +#endif + typedef struct { SceUInt size; //< this structure size (0x18) @@ -52,4 +56,8 @@ int sceKernelUnloadModule(SceUID modid, int flags, SceKernelULMOption *option); SceUID sceKernelLoadStartModule(char *path, SceSize args, void *argp, int flags, SceKernelLMOption *option, int *status); int sceKernelStopUnloadModule(SceUID modid, SceSize args, void *argp, int flags, SceKernelULMOption *option, int *status); +#ifdef __cplusplus +} #endif + +#endif /* _PSP2_KERNEL_MODULEMGR_H_ */ |