$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Ulrich Eckhardt (doomster_at_[hidden])
Date: 2007-05-20 02:45:08
On Saturday 19 May 2007 20:50:16 David Deakins wrote:
> The Windows CE CRT does not have support for structured exception
> translation via _set_se_translator and the eh.h header is not present.
> Attached is a patch of execution_monitor.ipp on CVS-HEAD to disable the
> structured exception translation code when _WIN32_WCE is defined.
From what I learned from discussions on the usenet, that is not the correct
macro. This macro, if defined, defines a mimimum target version of CE, just
like _WIN32_WINNT=0x400 for NT4. Now, what you should rather use is UNDER_CE
to detect CE and then use that macro to distinguish between different target
versions.
Uli