Mercurial > hg > vamp-build-and-test
comparison DEPENDENCIES/generic/include/boost/detail/winapi/process.hpp @ 101:c530137014c0
Update Boost headers (1.58.0)
author | Chris Cannam |
---|---|
date | Mon, 07 Sep 2015 11:12:49 +0100 |
parents | 2665513ce2d3 |
children |
comparison
equal
deleted
inserted
replaced
100:793467b5e61c | 101:c530137014c0 |
---|---|
21 namespace winapi { | 21 namespace winapi { |
22 #if defined( BOOST_USE_WINDOWS_H ) | 22 #if defined( BOOST_USE_WINDOWS_H ) |
23 using ::GetCurrentProcessId; | 23 using ::GetCurrentProcessId; |
24 #else | 24 #else |
25 # ifndef UNDER_CE | 25 # ifndef UNDER_CE |
26 extern "C" { | 26 extern "C" { |
27 __declspec(dllimport) unsigned long __stdcall | 27 __declspec(dllimport) DWORD_ WINAPI GetCurrentProcessId(void); |
28 GetCurrentProcessId(void); | 28 } |
29 } | |
30 # else | 29 # else |
31 using ::GetCurrentProcessId; | 30 using ::GetCurrentProcessId; |
32 # endif | 31 # endif |
33 #endif | 32 #endif |
34 } | 33 } |