2
0

WindowsWrapper.h 186 B

12345678910
  1. // WindowsWrapper.h
  2. //
  3. // Includes Windows.h while avoiding conflicts with Oberon types.
  4. #define BOOLEAN _BOOLEAN
  5. #define CHAR _CHAR
  6. #include <windows.h>
  7. #undef BOOLEAN
  8. #undef CHAR