blob: 4336ca515325f762bb0ca3fbb96dfd90e8a79d9b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef _PSP2_KERNEL_APPMGR_H_
#define _PSP2_KERNEL_APPMGR_H_
#include <psp2kern/types.h>
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief Kill a process.
* @param[in] pid The process to kill.
* @return Zero on success, else < 0.
*/
int sceAppMgrKillProcess(SceUID pid);
#ifdef __cplusplus
}
#endif
#endif /* _PSP2_KERNEL_APPMGR_H_ */
|