Search found 4 matches

by 3r Ch4mp1
Sat Aug 18, 2007 7:40 pm
Forum: PSP Development
Topic: Trying to use Message Dialogs
Replies: 7
Views: 3211

Thanks guys you confirmed my suspects.
Side note: Lets stop the PRX madness. Now, shall we?
I develop a PRX because I wan't to do it and know how to do it, not like other people who wants to start programming with kernel modules when the logic step is beginning with EBOOTS
by 3r Ch4mp1
Sat Aug 18, 2007 8:39 am
Forum: PSP Development
Topic: Trying to use Message Dialogs
Replies: 7
Views: 3211

Trying to use Message Dialogs

Hi, i'm trying to implement message dialogs to my cf plugin, but as I read user functions cannot be used from kernel modules in 3.XX firmwares. I saw an utility.prx kernel module which has the message dialog fucntions I want, such as sceUtilityMsgDialogInitStart. How can access to them? If the only ...
by 3r Ch4mp1
Sat Aug 11, 2007 10:32 pm
Forum: PSP Development
Topic: sceDisplayDisable()
Replies: 1
Views: 1130

Problem fixed, the only thing i done was this, if you are programming in C++ and want to use these two functions use this:

Code: Select all

extern "C"{
int sceDisplayEnable(void);
int sceDisplayDisable(void);
}
by 3r Ch4mp1
Sat Aug 11, 2007 10:25 am
Forum: PSP Development
Topic: sceDisplayDisable()
Replies: 1
Views: 1130

sceDisplayDisable()

Hi guys, i'm trying to turn off fully the psp screen, i used sceGuDisplay(0) but when i use sceGuDisplay(1) the screen keeps black but the backlight turns on as I increase the brightness. I've read here about sceDisplayDisable and sceDisplayEnable, i put them on the top of my file, but in linking ti...