Adjustments for MSVC compatibility

develop
Kelly Martin 2012-11-20 09:32:04 -06:00
parent 364030f06b
commit bb3c5c02c1
2 changed files with 2 additions and 2 deletions

@ -27,7 +27,7 @@ distribution.
#include "Pragma.h"
#include "Export.h"
#include "Types.h"
/* #include "Types.h" */
#include <map>
#include <sys/types.h>
#include <vector>

@ -110,7 +110,7 @@ namespace DFHack
Pen chtile(char ch, int tile) { Pen cp(*this); cp.ch = ch; cp.tile = tile; return cp; }
};
struct ViewRect {
struct DFHACK_EXPORT ViewRect {
rect2d view, clip;
ViewRect(rect2d area) : view(area), clip(area) {}