July 02, 2013
you must change
#define WINSTL_TH_API_SEQUENCE_VALUE_TRAITS_CREATE_SNAPSHOT_FAIL_MESSAGE    TEXT("Could not create process list snapshot")
to
#define WINSTL_TH_API_SEQUENCE_VALUE_TRAITS_CREATE_SNAPSHOT_FAIL_MESSAGE    "Could not create process list snapshot"

LPCTSTR create_snapshot_fail_message()
to
static LPCSTR create_snapshot_fail_message()
in winstl\toolhelp\sequence_value_traits.hpp


i think it can use ascii to throw!
September 09, 2015
This is done, as of 1.9.120

"John" <xspeed1989@gmail.com> wrote in message news:gfawujgpzqzwovlqnyqm@forum.dlang.org...
> you must change
> #define WINSTL_TH_API_SEQUENCE_VALUE_TRAITS_CREATE_SNAPSHOT_FAIL_MESSAGE
> TEXT("Could not create process list snapshot")
> to
> #define WINSTL_TH_API_SEQUENCE_VALUE_TRAITS_CREATE_SNAPSHOT_FAIL_MESSAGE
> "Could not create process list snapshot"
>
> LPCTSTR create_snapshot_fail_message()
> to
> static LPCSTR create_snapshot_fail_message()
> in winstl\toolhelp\sequence_value_traits.hpp
>
>
> i think it can use ascii to throw!