cave-story-solaris/src/WindowsWrapper.h
Clownacy 4e0a168533 Move the MSVC6 hacks to WindowsWrapper.h
Now the wrapper has a purpose again, and it keeps things neat.
2020-03-14 12:55:22 +00:00

26 lines
392 B
C

#pragma once
// Visual Studio 6 is missing these, so define them here
#ifdef _MSC_VER
#ifndef VK_OEM_PLUS
#define VK_OEM_PLUS 0xBB
#endif
#ifndef VK_OEM_COMMA
#define VK_OEM_COMMA 0xBC
#endif
#ifndef VK_OEM_PERIOD
#define VK_OEM_PERIOD 0xBE
#endif
#ifndef VK_OEM_2
#define VK_OEM_2 0xBF
#endif
#ifndef DWORD_PTR
#define DWORD_PTR DWORD
#endif
#endif
#include <windows.h>