forked from TheOfficialFloW/VitaShell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsysmodule_internal.h
More file actions
34 lines (27 loc) · 775 Bytes
/
Copy pathsysmodule_internal.h
File metadata and controls
34 lines (27 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/**
* \file
* \brief Header file which defines system modules related variables and functions
*
* Copyright (C) 2015 PSP2SDK Project
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#ifndef _PSP2_SYSMODULE_INTERNAL_H_
#define _PSP2_SYSMODULE_INTERNAL_H_
#include <psp2/types.h>
#ifdef __cplusplus
extern "C" {
#endif
/* module IDs */
enum {
SCE_SYSMODULE_PROMOTER_UTIL = 0x80000024
};
int sceSysmoduleLoadModuleInternal(SceUInt32 id);
int sceSysmoduleUnloadModuleInternal(SceUInt32 id);
int sceSysmoduleIsLoadedInternal(SceUInt32 id);
#ifdef __cplusplus
}
#endif
#endif /* _PSP2_SYSMODULE_INTERNAL_H_ */