#pragma once // Exclude rarely-used stuff from Windows headers #define WIN32_LEAN_AND_MEAN // We do not want the non-portable library functions //#define _CRT_SECURE_NO_WARNINGS // Platform includes #include #include #include #include #include #include #include #include #include #include #include #include #include // Debug printing macro #if _DEBUG #define dprintf(x, ...) printf(x, __VA_ARGS__); #else #define dprintf(x, ...) ((void*)0); #endif