thunderbrew/src/os/compat/Mac.hpp

13 lines
241 B
C++
Raw Normal View History

2023-01-02 13:17:18 -06:00
#ifndef OS_COMPAT_MAC_HPP
#define OS_COMPAT_MAC_HPP
#ifdef __OBJC__
#include <AppKit/AppKit.h>
#if WHOA_SYSTEM_VERSION < WHOA_MACOS_10_12
#define NSEventTypeApplicationDefined NSApplicationDefined
#endif
#endif
#endif