mirror of
https://github.com/joel16/uofw.git
synced 2024-11-24 03:59:45 +00:00
11 lines
420 B
C
11 lines
420 B
C
|
/* Copyright (C) 2011 The uOFW team
|
||
|
See the file COPYING for copying permission.
|
||
|
*/
|
||
|
|
||
|
int sceKernelRegisterPriorityExceptionHandler(int exno, int prio, void (*func)());
|
||
|
int sceKernelRegisterDefaultExceptionHandler(void *func);
|
||
|
int sceKernelReleaseExceptionHandler(int exno, void (*func)());
|
||
|
int sceKernelReleaseDefaultExceptionHandler(void (*func)());
|
||
|
int sceKernelRegisterExceptionHandler(int exno, void (*func)());
|
||
|
|