00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef FLCALLBACKS_H
00012 #define FLCALLBACKS_H
00013
00014 #include "flGlobal.h"
00015
00016 #if FL_CALLBACKS
00017
00018 #include <pspkernel.h>
00019
00020 #ifdef __cplusplus
00021 extern "C" {
00022 #endif
00023
00024 #if FL_CALLBACKS_EXIT
00025
00035 extern int callbackExit(int inArg1, int inArg2, void* inCommon);
00036 #endif
00037 #if FL_CALLBACKS_POWER
00038
00049 extern int callbackPower(int inUnknown, int inPowerFlags, void* inCommon);
00050 #endif
00051
00057 extern int callbackCreateThread(SceSize args, void *argp);
00058
00065 extern int callbackInit();
00066
00067 #ifdef __cplusplus
00068 }
00069 #endif
00070
00071 #endif
00072
00073 #endif