Move d2x-rebirth/main/movie.c -> d2x-rebirth/main/movie.cpp

This commit is contained in:
Kp 2012-11-11 22:12:51 +00:00
parent cede90c2fb
commit ea327d8394
3 changed files with 9 additions and 1 deletions

View file

@ -1167,7 +1167,7 @@ class D2XProgram(DXXProgram):
'main/gamemine.c',
'main/gamepal.c',
'main/gameseq.c',
'main/movie.c',
'main/movie.cpp',
'main/piggy.c',
'main/segment.c',
'misc/physfsrwops.c',

View file

@ -3,6 +3,10 @@
#define MVE_ERR_EOF 1
#ifdef __cplusplus
extern "C" {
#endif
typedef struct{
int screenWidth;
int screenHeight;
@ -37,4 +41,8 @@ void MVE_memCallbacks(mve_cb_Alloc mem_alloc, mve_cb_Free mem_free);
void MVE_sfCallbacks(mve_cb_ShowFrame showframe);
void MVE_palCallbacks(mve_cb_SetPalette setpalette);
#ifdef __cplusplus
}
#endif
#endif /* _LIBMVE_H */