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.
14 lines
309 B
14 lines
309 B
/** |
|
* @file movie.h |
|
* |
|
* Interface of video playback. |
|
*/ |
|
#ifndef __MOVIE_H__ |
|
#define __MOVIE_H__ |
|
|
|
extern BOOL loop_movie; |
|
|
|
void play_movie(const char *pszMovie, BOOL user_can_close); |
|
LRESULT __stdcall MovieWndProc(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam); |
|
|
|
#endif /* __MOVIE_H__ */
|
|
|