shithub: cstory

ref: cf8977207eaf98c4d0674a51c67a368a463ce7c0
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