1
0
Fork 0

source/Platform/Unix: stub implementation

This commit is contained in:
Henrik Hautakoski 2019-06-01 01:13:44 +02:00
parent b0d14b91e0
commit 38d333862a
20 changed files with 498 additions and 2 deletions

View file

@ -4,6 +4,9 @@
#ifdef _WIN32
#include <Platform/Win32/Win32EventQueue.h>
typedef sp::Win32EventQueue ImplType;
#elif defined(__linux__) || defined(unix) || defined(__unix) || defined(__unix__)
#include <Platform/Unix/X11EventQueue.h>
typedef sp::X11EventQueue ImplType;
#else
#error "No MessageQueue implementation exists"
#endif