cave-story-solaris/src/WindowsWrapper.h
Clownacy 8b854a0c95 Don't use Windows.h in WindowsWrapper.h
The need for this was eliminates ages ago, when I remove the
WindowsWrapper.h dependencies from the backends (it should only be
used by core Cave Story code).

This should eliminate any future issues with Windows.h causing
name-collisions.
2020-07-08 19:33:52 +01:00

16 lines
193 B
C

#pragma once
#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;
};