mirror of
https://github.com/boostorg/detail.git
synced 2025-07-29 20:07:15 +02:00
Thread: Rollback last modification as it breaks regression test VeecoFTC/msvc-9.0~wm5~stlport5.2
[SVN r80067]
This commit is contained in:
@ -35,11 +35,11 @@
|
||||
|
||||
// under Windows CE we still have old-style Interlocked* functions
|
||||
|
||||
extern "C" long __cdecl InterlockedIncrement( long volatile * );
|
||||
extern "C" long __cdecl InterlockedDecrement( long volatile * );
|
||||
extern "C" long __cdecl InterlockedCompareExchange( long volatile *, long, long );
|
||||
extern "C" long __cdecl InterlockedExchange( long volatile *, long );
|
||||
extern "C" long __cdecl InterlockedExchangeAdd( long volatile *, long );
|
||||
extern "C" long __cdecl InterlockedIncrement( long* );
|
||||
extern "C" long __cdecl InterlockedDecrement( long* );
|
||||
extern "C" long __cdecl InterlockedCompareExchange( long*, long, long );
|
||||
extern "C" long __cdecl InterlockedExchange( long*, long );
|
||||
extern "C" long __cdecl InterlockedExchangeAdd( long*, long );
|
||||
|
||||
# define BOOST_INTERLOCKED_INCREMENT InterlockedIncrement
|
||||
# define BOOST_INTERLOCKED_DECREMENT InterlockedDecrement
|
||||
|
Reference in New Issue
Block a user