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.
|
//HEADER_GOES_HERE |
|
#ifndef __MOVIE_H__ |
|
#define __MOVIE_H__ |
|
|
|
extern BYTE movie_playing; |
|
extern BOOL loop_movie; |
|
|
|
void play_movie(char *pszMovie, BOOL user_can_close); |
|
LRESULT __stdcall MovieWndProc(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam); |
|
|
|
/* rdata */ |
|
|
|
#endif /* __MOVIE_H__ */
|
|
|