cave-story-solaris/src/WindowsWrapper.h
2020-03-31 20:22:54 +01:00

28 lines
342 B
C

#pragma once
#ifdef _WIN32
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#undef FindResource
#else
#include <stdio.h>
#define RGB(r,g,b) ((r) | ((g) << 8) | ((b) << 16))
typedef bool BOOL;
#define FALSE false
#define TRUE true
struct RECT
{
long left;
long top;
long right;
long bottom;
};
#define MAX_PATH FILENAME_MAX
#endif