symbian application opens new windows
Hi
I am porting C/C++ code on symbian9. I am facing a problem, during running of program whenever it encountered c library functions like fprinf,getcwd,fopen,fclose,fgets,fpus etc.. it opens a new windows on emulator (new windows appear with cursor blinking ...)..
I am not able to get the earlier windows ...
It's affecting my development activity.
1. what is the reason for new windows opening ?
2. Is thr any way to close the console on emulator ?
Re: symbian application opens new windows
you can turn that off, edit the Epoc32\winscw\c\system\data\config.ini file
and change the following entries
[STDIO]
STDIN = MEDIA3
STDOUT = MEDIA3
to
[STDIO]
STDIN = MEDIA1
STDOUT = MEDIA4
where
[MEDIA1]
type = file
path = C:\system\data\in.txt
max size = 100
[MEDIA4]
type = file
path = c:\system\data\out.txt
max size = 1000
create the in.txt and out.txt if they dont exist
Re: symbian application opens new windows
if I intsall the .sis in the phone device, the new windows is open, what should I do?