mirror of
https://github.com/thug1src/thug.git
synced 2025-01-22 05:43:47 +00:00
58 lines
1.6 KiB
C++
58 lines
1.6 KiB
C++
|
/*****************************************************************************
|
||
|
** **
|
||
|
** Neversoft Entertainment **
|
||
|
** **
|
||
|
** Copyright (C) 1999 - All Rights Reserved **
|
||
|
** **
|
||
|
******************************************************************************
|
||
|
** **
|
||
|
** Project: GEL (Game Engine Library) **
|
||
|
** **
|
||
|
** Module: GEL **
|
||
|
** **
|
||
|
** File name: movies.cpp **
|
||
|
** **
|
||
|
** Created: 5/14/1 - mjd **
|
||
|
** **
|
||
|
** Description: streaming movies **
|
||
|
** **
|
||
|
*****************************************************************************/
|
||
|
|
||
|
|
||
|
/*****************************************************************************
|
||
|
** Includes **
|
||
|
*****************************************************************************/
|
||
|
|
||
|
#include <core/defines.h>
|
||
|
#include <core/macros.h>
|
||
|
#include <core/singleton.h>
|
||
|
|
||
|
#ifdef __PLAT_NGPS__
|
||
|
#include <gel/movies/ngps/p_movies.h>
|
||
|
#elif defined( __PLAT_XBOX__ )
|
||
|
#include <gel/movies/xbox/p_movies.h>
|
||
|
#elif defined( __PLAT_NGC__ )
|
||
|
#include <gel/movies/ngc/p_movies.h>
|
||
|
#endif
|
||
|
|
||
|
#include <sys/profiler.h>
|
||
|
|
||
|
|
||
|
/*****************************************************************************
|
||
|
** DBG Information **
|
||
|
*****************************************************************************/
|
||
|
|
||
|
|
||
|
|
||
|
namespace Flx
|
||
|
{
|
||
|
|
||
|
|
||
|
|
||
|
void PlayMovie( const char *pMovieName )
|
||
|
{
|
||
|
PMovies_PlayMovie( pMovieName );
|
||
|
}
|
||
|
|
||
|
} // namespace Flx
|