Minor changes to preprocessor statements.
git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@1086 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
parent
6cb58ee8cc
commit
1137319d54
1 changed files with 4 additions and 4 deletions
|
@ -77,11 +77,11 @@
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef LOKI_DEFAULT_MUTEX
|
#if !defined( LOKI_DEFAULT_MUTEX )
|
||||||
#define LOKI_DEFAULT_MUTEX ::Loki::Mutex
|
#define LOKI_DEFAULT_MUTEX ::Loki::Mutex
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef LOKI_WINDOWS_H
|
#if defined( LOKI_WINDOWS_H )
|
||||||
|
|
||||||
#define LOKI_THREADS_MUTEX(x) CRITICAL_SECTION (x);
|
#define LOKI_THREADS_MUTEX(x) CRITICAL_SECTION (x);
|
||||||
#define LOKI_THREADS_MUTEX_INIT(x) ::InitializeCriticalSection (x)
|
#define LOKI_THREADS_MUTEX_INIT(x) ::InitializeCriticalSection (x)
|
||||||
|
|
Loading…
Reference in a new issue