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.
17 lines
433 B
17 lines
433 B
//HEADER_GOES_HERE |
|
#ifndef __MOVIE_H__ |
|
#define __MOVIE_H__ |
|
|
|
extern int movie_cpp_init_value; // weak |
|
extern char movie_playing; // weak |
|
extern int loop_movie; // weak |
|
|
|
void __cdecl movie_cpp_init(); |
|
void __fastcall play_movie(char *pszMovie, bool user_can_close); |
|
LRESULT __stdcall MovieWndProc(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam); |
|
|
|
/* data */ |
|
|
|
extern int movie_inf; // weak |
|
|
|
#endif /* __MOVIE_H__ */
|
|
|