I am trying to port my application to use boost 1.58.0 from 1.53.0 Getting this error while compiling in windows
\include\boost/interprocess/detail/os_thread_functions.hpp(495): error C3861: '_beginthreadex': identifier not found
os_thread_functions.hpp
includes <process.h>
but my application also has a header file named process.h
.
I guess os_thread_functions.hpp
includes my application's process.h
instead of Window's header and hence the error.
How do i force os_thread_functions.hpp
to include the process.h
from VS header files?
Thanks in advance