mirror of
https://github.com/AxioDL/boo.git
synced 2025-12-16 00:17:06 +00:00
Minor Windows include tweaks
This commit is contained in:
@@ -1,6 +1,14 @@
|
||||
#ifndef BOO_SYSTEM_HPP
|
||||
#define BOO_SYSTEM_HPP
|
||||
|
||||
#ifdef _WIN32
|
||||
#include <windows.h>
|
||||
#include <D3Dcommon.h>
|
||||
#include <wrl/client.h>
|
||||
template <class T>
|
||||
using ComPtr = Microsoft::WRL::ComPtr<T>;
|
||||
#endif
|
||||
|
||||
#include <string>
|
||||
|
||||
#ifndef ENABLE_BITWISE_ENUM
|
||||
@@ -53,12 +61,4 @@ namespace boo
|
||||
|
||||
}
|
||||
|
||||
#ifdef _WIN32
|
||||
#include <windows.h>
|
||||
#include <D3Dcommon.h>
|
||||
#include <wrl/client.h>
|
||||
template <class T>
|
||||
using ComPtr = Microsoft::WRL::ComPtr<T>;
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user