mirror of
https://github.com/vishapoberon/compiler.git
synced 2026-04-05 22:12:24 +00:00
10 lines
186 B
C
10 lines
186 B
C
// WindowsWrapper.h
|
|
//
|
|
// Includes Windows.h while avoiding conflicts with Oberon types.
|
|
|
|
|
|
#define BOOLEAN _BOOLEAN
|
|
#define CHAR _CHAR
|
|
#include <windows.h>
|
|
#undef BOOLEAN
|
|
#undef CHAR
|