shithub: cstory

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