shithub: cstory

ref: 0c9c0115cf889e37caca66596ded3ec024046126
dir: /src/WindowsWrapper.h/

View raw version
#pragma once

#include <stdio.h>

typedef int BOOL;

#ifndef FALSE
#define FALSE 0
#endif

#ifndef TRUE
#define TRUE 1
#endif

struct RECT
{
	long left;
	long top;
	long right;
	long bottom;
};

#define MAX_PATH FILENAME_MAX