shithub: cstory

ref: 14735caac3ab99ba3db29e24f6e26031c3385e0c
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