mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 11:12:29 +00:00
12 lines
241 B
C++
12 lines
241 B
C++
#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
|