diff options
Diffstat (limited to 'src/3rdParty/efsw/platform/win/SystemImpl.hpp')
-rwxr-xr-x | src/3rdParty/efsw/platform/win/SystemImpl.hpp | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/3rdParty/efsw/platform/win/SystemImpl.hpp b/src/3rdParty/efsw/platform/win/SystemImpl.hpp new file mode 100755 index 0000000..99b4867 --- /dev/null +++ b/src/3rdParty/efsw/platform/win/SystemImpl.hpp | |||
@@ -0,0 +1,25 @@ | |||
1 | #ifndef EFSW_SYSTEMIMPLWIN_HPP | ||
2 | #define EFSW_SYSTEMIMPLWIN_HPP | ||
3 | |||
4 | #include <efsw/base.hpp> | ||
5 | |||
6 | #if EFSW_PLATFORM == EFSW_PLATFORM_WIN32 | ||
7 | |||
8 | namespace efsw { namespace Platform { | ||
9 | |||
10 | class System { | ||
11 | public: | ||
12 | static void sleep( const unsigned long& ms ); | ||
13 | |||
14 | static std::string getProcessPath(); | ||
15 | |||
16 | static void maxFD(); | ||
17 | |||
18 | static Uint64 getMaxFD(); | ||
19 | }; | ||
20 | |||
21 | }} // namespace efsw::Platform | ||
22 | |||
23 | #endif | ||
24 | |||
25 | #endif | ||