wut/include/wut_types.h

13 lines
126 B
C
Raw Normal View History

2016-01-07 13:07:13 +01:00
#pragma once
#include <stdint.h>
typedef int BOOL;
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif