Headerfile for movie module.

This commit is contained in:
johns 2002-07-14 13:26:09 +00:00
parent d976c6ed88
commit 1f0261b25d
2 changed files with 57 additions and 1 deletions
src/include

View file

@ -45,7 +45,7 @@ HDRS = actions.h ai.h ccl.h freecraft.h construct.h cursor.h font.h icons.h \
siod.h siodp.h iolib.h iocompat.h depend.h settings.h myendian.h \
net_lowlevel.h netconnect.h rdtsc.h campaign.h trigger.h libcda.h \
etlib/generic.h etlib/xmalloc.h etlib/hash.h etlib/dllist.h \
editor.h
editor.h movie.h
all:
echo done.

56
src/include/movie.h Normal file
View file

@ -0,0 +1,56 @@
// ___________ _________ _____ __
// \_ _____/______ ____ ____ \_ ___ \____________ _/ ____\/ |_
// | __) \_ __ \_/ __ \_/ __ \/ \ \/\_ __ \__ \\ __\\ __\
// | \ | | \/\ ___/\ ___/\ \____| | \// __ \| | | |
// \___ / |__| \___ >\___ >\______ /|__| (____ /__| |__|
// \/ \/ \/ \/ \/
// ______________________ ______________________
// T H E W A R B E G I N S
// FreeCraft - A free fantasy real time strategy game engine
//
/**@name movie.h - The movie header file. */
//
// (c) Copyright 2002 by Lutz Sammer
//
// FreeCraft is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published
// by the Free Software Foundation; only version 2 of the License.
//
// FreeCraft is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// $Id$
#ifndef __MOVIE_H__
#define __MOVIE_H__
//@{
/*----------------------------------------------------------------------------
-- Documentation
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
-- Includes
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
-- Declarations
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
-- Variables
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
-- Functions
----------------------------------------------------------------------------*/
/// Play a movie file
extern int PlayMovie(const char* name, int flags);
//@}
#endif // !__MOVIE_H__