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.
27 lines
459 B
27 lines
459 B
/** |
|
* @file movie.h |
|
* |
|
* Interface of video playback. |
|
*/ |
|
#ifndef __MOVIE_H__ |
|
#define __MOVIE_H__ |
|
|
|
DEVILUTION_BEGIN_NAMESPACE |
|
|
|
#ifdef __cplusplus |
|
extern "C" { |
|
#endif |
|
|
|
extern BYTE movie_playing; |
|
extern BOOL loop_movie; |
|
|
|
void play_movie(const char *pszMovie, BOOL user_can_close); |
|
void MovieWndProc(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam); |
|
|
|
#ifdef __cplusplus |
|
} |
|
#endif |
|
|
|
DEVILUTION_END_NAMESPACE |
|
|
|
#endif /* __MOVIE_H__ */
|
|
|