You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

23 lines
305 B

/**
* @file movie.h
*
* Interface of video playback.
*/
#pragma once
namespace devilution {
#ifdef __cplusplus
extern "C" {
#endif
extern BYTE movie_playing;
extern BOOL loop_movie;
void play_movie(const char *pszMovie, BOOL user_can_close);
#ifdef __cplusplus
}
#endif
}