Make windows build still build

This commit is contained in:
tmaul 2012-01-01 20:40:10 +00:00
parent efd7972d7f
commit 7b0caf7f83
1 changed files with 9 additions and 9 deletions

View File

@ -24,6 +24,15 @@
// ---------------------------------------------------------------------------
// OS dependent functionality
typedef struct tagIMAGE {
unsigned int width;
unsigned int height;
unsigned int rowbytes;
unsigned int imgbytes;
unsigned char** rowptr;
unsigned char* bmpbits;
unsigned int flags;
} IMAGE;
#if defined (BUILD_WIN32)
#include "burner_win32.h"
@ -40,15 +49,6 @@
#include "interface.h"
typedef struct tagIMAGE {
unsigned int width;
unsigned int height;
unsigned int rowbytes;
unsigned int imgbytes;
unsigned char** rowptr;
unsigned char* bmpbits;
unsigned int flags;
} IMAGE;
#define IMG_FREE (1 << 0)