diff options
author | Li Jin <dragon-fly@qq.com> | 2022-11-15 17:23:46 +0800 |
---|---|---|
committer | Li Jin <dragon-fly@qq.com> | 2022-11-15 17:52:09 +0800 |
commit | 94f8330613877b3582d32bd11abd83a97b4399ad (patch) | |
tree | 5359de314be1ebde17f8d1e48632a97d18f9e50f /src/3rdParty/efsw/platform/platformimpl.hpp | |
parent | 60f8f00a022ac08701792b2897b72d8c99b50f52 (diff) | |
download | yuescript-94f8330613877b3582d32bd11abd83a97b4399ad.tar.gz yuescript-94f8330613877b3582d32bd11abd83a97b4399ad.tar.bz2 yuescript-94f8330613877b3582d32bd11abd83a97b4399ad.zip |
adding -w option to Yuescript tool.
Diffstat (limited to 'src/3rdParty/efsw/platform/platformimpl.hpp')
-rwxr-xr-x | src/3rdParty/efsw/platform/platformimpl.hpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/3rdParty/efsw/platform/platformimpl.hpp b/src/3rdParty/efsw/platform/platformimpl.hpp new file mode 100755 index 0000000..5442580 --- /dev/null +++ b/src/3rdParty/efsw/platform/platformimpl.hpp | |||
@@ -0,0 +1,20 @@ | |||
1 | #ifndef EFSW_PLATFORMIMPL_HPP | ||
2 | #define EFSW_PLATFORMIMPL_HPP | ||
3 | |||
4 | #include <efsw/base.hpp> | ||
5 | |||
6 | #if defined( EFSW_PLATFORM_POSIX ) | ||
7 | #include <efsw/platform/posix/ThreadImpl.hpp> | ||
8 | #include <efsw/platform/posix/MutexImpl.hpp> | ||
9 | #include <efsw/platform/posix/SystemImpl.hpp> | ||
10 | #include <efsw/platform/posix/FileSystemImpl.hpp> | ||
11 | #elif EFSW_PLATFORM == EFSW_PLATFORM_WIN32 | ||
12 | #include <efsw/platform/win/ThreadImpl.hpp> | ||
13 | #include <efsw/platform/win/MutexImpl.hpp> | ||
14 | #include <efsw/platform/win/SystemImpl.hpp> | ||
15 | #include <efsw/platform/win/FileSystemImpl.hpp> | ||
16 | #else | ||
17 | #error Thread, Mutex, and System not implemented for this platform. | ||
18 | #endif | ||
19 | |||
20 | #endif | ||