opening multiple windows

Posted By: malhal

opening multiple windows - 10/10/09 18:16

hello,

I'm trying to simultaneously open two borderless windows in Lite-c (running on Vista) with the following code:

void main()
{
wait(1);
video_window(vector(200,0,0),vector(200,1000,0),1,NULL);
video_window(vector(400,0,0),vector(200,1000,0),1,NULL);
}

The problem is that I only see the second window, and I want to see both of them. Who can solve this riddle?



thanks in advance,
Posted By: Quad

Re: opening multiple windows - 10/10/09 18:22

because this functions doesnt open a new window but modify the existing one.
Posted By: malhal

Re: opening multiple windows - 10/10/09 18:29

Any idea what function to use when I want to have more than 1 window?
© 2024 lite-C Forums