[Windows] Fix driver version detection of AMD RDNA+ GPU on Windows 10
[xbmc.git] / xbmc / windowing / osx / WinEventsOSXImpl.h
blobe9c35ef0562e3621b60452c676799c53bb6adac3
1 /*
2 * Copyright (C) 2011-2018 Team Kodi
3 * This file is part of Kodi - https://kodi.tv
5 * SPDX-License-Identifier: GPL-2.0-or-later
6 * See LICENSES/README.md for more information.
7 */
9 #pragma once
11 #include "windowing/osx/WinEventsOSX.h"
13 #import <Foundation/Foundation.h>
15 @class NSEvent;
17 @interface CWinEventsOSXImpl : NSObject
19 - (void)MessagePush:(XBMC_Event*)newEvent;
20 - (size_t)GetQueueSize;
21 - (bool)MessagePump;
22 - (void)enableInputEvents;
23 - (void)disableInputEvents;
24 - (XBMC_Event)keyPressEvent:(NSEvent*)nsEvent;
26 - (void)signalMouseEntered;
27 - (void)signalMouseExited;
28 - (void)ProcessInputEvent:(NSEvent*)nsEvent;
30 @end