shithub: cstory

ref: 3a5a5044b179198dba416eaf3a9bb17f7854d191
dir: /src/WindowsWrapper.h/

View raw version
#pragma once

#ifdef _WIN32
#include <windef.h>
#include <wingdi.h>
#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