Win32 warning avoidance

This commit is contained in:
Jack Andersen 2016-12-11 13:30:00 -10:00
parent b2152f7890
commit 318cc92083
1 changed files with 2 additions and 0 deletions

View File

@ -2,7 +2,9 @@
#define FILEWRITER_HPP
#if _WIN32
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#endif
#include <windows.h>
#else
#include <stdio.h>