Relevant video routines moved to libs/video
(video playback support phase 2) git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@1252 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
@@ -136,73 +136,6 @@ ScreenTransition (int TransType, PRECT pRect)
|
||||
TransitionAmount = 255;
|
||||
}
|
||||
|
||||
// Status: Ignored
|
||||
BOOLEAN
|
||||
InitVideo (BOOLEAN useCDROM) //useCDROM doesn't really apply to us...
|
||||
{
|
||||
BOOLEAN ret;
|
||||
|
||||
(void)useCDROM; /* dodge compiler warning */
|
||||
|
||||
// fprintf (stderr, "Unimplemented function activated: InitVideo()\n");
|
||||
ret = TRUE;
|
||||
return (ret);
|
||||
}
|
||||
|
||||
// Status: Ignored
|
||||
void
|
||||
UninitVideo () //empty
|
||||
{
|
||||
// fprintf (stderr, "Unimplemented function activated: UninitVideo()\n");
|
||||
}
|
||||
|
||||
//Status: Unimplemented
|
||||
void
|
||||
VidStop() // At least this one makes sense.
|
||||
{
|
||||
// fprintf (stderr, "Unimplemented function activated: VidStop()\n");
|
||||
}
|
||||
|
||||
//Status: Unimplemented
|
||||
MEM_HANDLE
|
||||
VidPlaying() // Easy enough.
|
||||
{
|
||||
MEM_HANDLE ret;
|
||||
|
||||
//fprintf (stderr, "Unimplemented function activated: VidPlaying()\n");
|
||||
ret = 0;
|
||||
return (ret);
|
||||
}
|
||||
|
||||
//Status: Unimplemented
|
||||
VIDEO_TYPE
|
||||
VidPlay (VIDEO_REF VidRef, char *loopname, BOOLEAN uninit)
|
||||
// uninit? when done, I guess.
|
||||
{
|
||||
VIDEO_TYPE ret;
|
||||
ret = 0;
|
||||
|
||||
/* dodge compiler warnings */
|
||||
(void) VidRef;
|
||||
(void) loopname;
|
||||
(void) uninit;
|
||||
// fprintf (stderr, "Unimplemented function activated: VidPlay()\n");
|
||||
return (ret);
|
||||
}
|
||||
|
||||
VIDEO_REF
|
||||
_init_video_file(PVOID pStr)
|
||||
{
|
||||
VIDEO_REF ret;
|
||||
|
||||
fprintf (stderr, "Unimplemented function activated: _init_video_file()\n");
|
||||
|
||||
/* dodge compiler warning */
|
||||
(void) pStr;
|
||||
ret = 0;
|
||||
return (ret);
|
||||
}
|
||||
|
||||
BOOLEAN
|
||||
_image_intersect (PIMAGE_BOX box1, PIMAGE_BOX box2, PRECT rect)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user