shithub: cstory

ref: e4394aea1f1d5f0e8aebc02b4dd1362136cb84d7
dir: /src/WindowsWrapper.h/

View raw version
#pragma once

#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