1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-03-25 21:38:59 +02:00

* VCMI compiles now under MSVC

This commit is contained in:
mateuszb 2009-06-21 13:44:15 +00:00
parent f0b1c8b644
commit c6b11ee917
2 changed files with 9 additions and 1 deletions

@ -202,7 +202,7 @@ void CBIKHandler::open(std::string name)
#else
#include "SDL_Extensions.h"
#include "../client/SDL_Extensions.h"
extern "C" {
#include <libavformat/avformat.h>

@ -150,9 +150,17 @@ public:
void close();
};
class CVideoPlayer
{
};
#else
#ifdef _WIN32
#include <SDL_video.h>
#else
#include <SDL/SDL_video.h>
#endif
typedef struct AVFormatContext AVFormatContext;
typedef struct AVCodecContext AVCodecContext;