shithub: candycrisis

ref: b4805f6e847e719e08e5f75e09b4f6010f7b43b6
dir: /src/stdafx.h/

View raw version
///
///  stdafx.h
///

#pragma once

#include <SDL2/SDL.h>
#include <SDL2/SDL_endian.h>

#if _WIN32

#define _CRT_SECURE_NO_WARNINGS 1

#include "targetver.h"

#define WIN32_LEAN_AND_MEAN             // Exclude rarely-used stuff from Windows headers
// Windows Header Files:
#include <windows.h>

// C RunTime Header Files
#include <stdlib.h>
#include <malloc.h>
#include <memory.h>
#include <tchar.h>

#include "SDL.h"
#include "SDL_endian.h"

#endif