This commit is contained in:
parent
7590569890
commit
df67653abb
2 changed files with 606 additions and 0 deletions
73
source/fmv/fmv.h
Normal file
73
source/fmv/fmv.h
Normal file
|
@ -0,0 +1,73 @@
|
|||
/*=========================================================================
|
||||
|
||||
.h
|
||||
|
||||
Author:
|
||||
Created:
|
||||
Project:
|
||||
Purpose:
|
||||
|
||||
Copyright (c) 1998 / 1999 Climax Development Ltd
|
||||
|
||||
===========================================================================*/
|
||||
|
||||
#ifndef __FMV_HEADER__
|
||||
#define __FMV_HEADER__
|
||||
|
||||
/*----------------------------------------------------------------------
|
||||
Includes
|
||||
-------- */
|
||||
|
||||
/* Std Lib
|
||||
------- */
|
||||
|
||||
/* Glib
|
||||
---- */
|
||||
|
||||
#ifndef _GLOBAL_HEADER_
|
||||
#include "system\global.h"
|
||||
#endif
|
||||
|
||||
|
||||
/* Local
|
||||
----- */
|
||||
|
||||
/*----------------------------------------------------------------------
|
||||
Tyepdefs && Defines
|
||||
------------------- */
|
||||
|
||||
enum
|
||||
{
|
||||
FMV_THQ,
|
||||
FMV_INTRO,
|
||||
MAX_FMVS,
|
||||
};
|
||||
|
||||
|
||||
/*----------------------------------------------------------------------
|
||||
Structure defintions
|
||||
-------------------- */
|
||||
typedef bool (*FmvPerFrameFunc)(void);
|
||||
|
||||
/*----------------------------------------------------------------------
|
||||
Globals
|
||||
------- */
|
||||
|
||||
/* Vars
|
||||
---- */
|
||||
|
||||
/* Data
|
||||
---- */
|
||||
|
||||
/* Functions
|
||||
--------- */
|
||||
int FMV_play(int fmvNumber,FmvPerFrameFunc func=NULL);
|
||||
void SetCDVolumeOn(void);
|
||||
void SetCDVolumeOff(void);
|
||||
|
||||
/*---------------------------------------------------------------------- */
|
||||
|
||||
#endif /* __XYZ_H__ */
|
||||
|
||||
/*===========================================================================
|
||||
end */
|
Loading…
Add table
Add a link
Reference in a new issue