mirror of
https://github.com/vishapoberon/compiler.git
synced 2026-04-06 14:32:24 +00:00
9 lines
189 B
C
9 lines
189 B
C
// WindowsWrapper.h
|
|
//
|
|
// Includes Windows.h while avoiding conflicts with Oberon types.
|
|
|
|
#undef BOOLEAN
|
|
#undef CHAR
|
|
#include <windows.h>
|
|
#define BOOLEAN char
|
|
#define CHAR unsigned char
|