shithub: cstory

ref: 5e60c15b1dc1b4e08d86f1d28f57fab1e990757e
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