I think you didn't understand me guys!
I just want to load ONE video but during game is playing!
The only problem is EVERITHING IS PAUSED when video is loading!
So I've used this command to create a new thread
void Thread( void* pParams ) // thread function
{
agk::LoadVideo(videonamebuffer);
//MessageBox(0, "Video loaded!","!!!",0 );
}
//-----------------------------
_beginthread( Thread, 0, NULL ); // creating new thread
//-----------------------------
and it loads video on the "second" processor core I think.
But when I play this video I hear only sounds from video it doesn't appear at all!
* Without thread creation it works fine!