diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2016-09-16 17:01:24 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2016-09-16 17:53:40 +0200 |
commit | a5167736460bac22010333cfe7530a5fa50d2c70 (patch) | |
tree | ff4c5885483b06f347df37fb19fa97e6047ae959 /compat/win32-com.hpp | |
parent | 7e97b1b0ee2d93aeb70b0c50954ff08e1f0eca71 (diff) |
compat, dinput: don't overdo COM logic
Diffstat (limited to 'compat/win32-com.hpp')
-rw-r--r-- | compat/win32-com.hpp | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/compat/win32-com.hpp b/compat/win32-com.hpp deleted file mode 100644 index fe2b478f..00000000 --- a/compat/win32-com.hpp +++ /dev/null @@ -1,19 +0,0 @@ -#pragma once - -#ifdef _WIN32 - -#include "export.hpp" - -#include <objbase.h> -#include <ole2.h> - -enum com_type : int -{ - com_multithreaded = COINIT_MULTITHREADED, - com_apartment = COINIT_APARTMENTTHREADED, - com_invalid = 0, -}; - -bool OPENTRACK_COMPAT_EXPORT init_com_threading(com_type t = com_invalid); - -#endif |