diff options
Diffstat (limited to 'src/3rdParty/efsw/platform/win')
-rw-r--r--[-rwxr-xr-x] | src/3rdParty/efsw/platform/win/FileSystemImpl.cpp | 0 | ||||
-rw-r--r--[-rwxr-xr-x] | src/3rdParty/efsw/platform/win/FileSystemImpl.hpp | 0 | ||||
-rw-r--r--[-rwxr-xr-x] | src/3rdParty/efsw/platform/win/MutexImpl.cpp | 0 | ||||
-rw-r--r--[-rwxr-xr-x] | src/3rdParty/efsw/platform/win/MutexImpl.hpp | 0 | ||||
-rw-r--r--[-rwxr-xr-x] | src/3rdParty/efsw/platform/win/SystemImpl.cpp | 0 | ||||
-rw-r--r--[-rwxr-xr-x] | src/3rdParty/efsw/platform/win/SystemImpl.hpp | 0 | ||||
-rw-r--r--[-rwxr-xr-x] | src/3rdParty/efsw/platform/win/ThreadImpl.cpp | 2 | ||||
-rw-r--r--[-rwxr-xr-x] | src/3rdParty/efsw/platform/win/ThreadImpl.hpp | 2 |
8 files changed, 2 insertions, 2 deletions
diff --git a/src/3rdParty/efsw/platform/win/FileSystemImpl.cpp b/src/3rdParty/efsw/platform/win/FileSystemImpl.cpp index 2b87513..2b87513 100755..100644 --- a/src/3rdParty/efsw/platform/win/FileSystemImpl.cpp +++ b/src/3rdParty/efsw/platform/win/FileSystemImpl.cpp | |||
diff --git a/src/3rdParty/efsw/platform/win/FileSystemImpl.hpp b/src/3rdParty/efsw/platform/win/FileSystemImpl.hpp index e952efc..e952efc 100755..100644 --- a/src/3rdParty/efsw/platform/win/FileSystemImpl.hpp +++ b/src/3rdParty/efsw/platform/win/FileSystemImpl.hpp | |||
diff --git a/src/3rdParty/efsw/platform/win/MutexImpl.cpp b/src/3rdParty/efsw/platform/win/MutexImpl.cpp index 62b7f83..62b7f83 100755..100644 --- a/src/3rdParty/efsw/platform/win/MutexImpl.cpp +++ b/src/3rdParty/efsw/platform/win/MutexImpl.cpp | |||
diff --git a/src/3rdParty/efsw/platform/win/MutexImpl.hpp b/src/3rdParty/efsw/platform/win/MutexImpl.hpp index 7b06492..7b06492 100755..100644 --- a/src/3rdParty/efsw/platform/win/MutexImpl.hpp +++ b/src/3rdParty/efsw/platform/win/MutexImpl.hpp | |||
diff --git a/src/3rdParty/efsw/platform/win/SystemImpl.cpp b/src/3rdParty/efsw/platform/win/SystemImpl.cpp index d1f2b21..d1f2b21 100755..100644 --- a/src/3rdParty/efsw/platform/win/SystemImpl.cpp +++ b/src/3rdParty/efsw/platform/win/SystemImpl.cpp | |||
diff --git a/src/3rdParty/efsw/platform/win/SystemImpl.hpp b/src/3rdParty/efsw/platform/win/SystemImpl.hpp index 99b4867..99b4867 100755..100644 --- a/src/3rdParty/efsw/platform/win/SystemImpl.hpp +++ b/src/3rdParty/efsw/platform/win/SystemImpl.hpp | |||
diff --git a/src/3rdParty/efsw/platform/win/ThreadImpl.cpp b/src/3rdParty/efsw/platform/win/ThreadImpl.cpp index d0fde8b..463934c 100755..100644 --- a/src/3rdParty/efsw/platform/win/ThreadImpl.cpp +++ b/src/3rdParty/efsw/platform/win/ThreadImpl.cpp | |||
@@ -8,7 +8,7 @@ | |||
8 | 8 | ||
9 | namespace efsw { namespace Platform { | 9 | namespace efsw { namespace Platform { |
10 | 10 | ||
11 | ThreadImpl::ThreadImpl( Thread* owner ) { | 11 | ThreadImpl::ThreadImpl( efsw::Thread* owner ) { |
12 | mThread = reinterpret_cast<HANDLE>( | 12 | mThread = reinterpret_cast<HANDLE>( |
13 | _beginthreadex( NULL, 0, &ThreadImpl::entryPoint, owner, 0, &mThreadId ) ); | 13 | _beginthreadex( NULL, 0, &ThreadImpl::entryPoint, owner, 0, &mThreadId ) ); |
14 | 14 | ||
diff --git a/src/3rdParty/efsw/platform/win/ThreadImpl.hpp b/src/3rdParty/efsw/platform/win/ThreadImpl.hpp index 1afb593..455f24c 100755..100644 --- a/src/3rdParty/efsw/platform/win/ThreadImpl.hpp +++ b/src/3rdParty/efsw/platform/win/ThreadImpl.hpp | |||
@@ -19,7 +19,7 @@ namespace Platform { | |||
19 | 19 | ||
20 | class ThreadImpl { | 20 | class ThreadImpl { |
21 | public: | 21 | public: |
22 | ThreadImpl( Thread* owner ); | 22 | explicit ThreadImpl( efsw::Thread* owner ); |
23 | 23 | ||
24 | ~ThreadImpl(); | 24 | ~ThreadImpl(); |
25 | 25 | ||