Platform: Windows: Create trampoline header

This way windows.h can be included if needed without a guard,
and we have a place to stub out defines for other platforms if
necessary.
This commit is contained in:
Paul Hollinsky
2022-03-03 15:01:32 -05:00
parent 8aa5bef7dc
commit 478dfb3cb8
4 changed files with 11 additions and 3 deletions
+8
View File
@@ -0,0 +1,8 @@
#ifndef __PLATFORM_WINDOWS_H_
#define __PLATFORM_WINDOWS_H_
#if defined _WIN32
#include "icsneo/platform/windows/windows.h"
#endif
#endif