From: Torge Matthies tmatthies@codeweavers.com
--- dlls/msvcrt/Makefile.in | 1 + dlls/msvcrt/exception_ptr.c | 4 ++++ 2 files changed, 5 insertions(+)
diff --git a/dlls/msvcrt/Makefile.in b/dlls/msvcrt/Makefile.in index e8a510d9937..8cd0c4ea7f4 100644 --- a/dlls/msvcrt/Makefile.in +++ b/dlls/msvcrt/Makefile.in @@ -23,6 +23,7 @@ C_SRCS = \ except_arm64.c \ except_i386.c \ except_x86_64.c \ + exception_ptr.c \ exit.c \ file.c \ heap.c \ diff --git a/dlls/msvcrt/exception_ptr.c b/dlls/msvcrt/exception_ptr.c index 9d727266e77..60ea24a67a4 100644 --- a/dlls/msvcrt/exception_ptr.c +++ b/dlls/msvcrt/exception_ptr.c @@ -28,6 +28,8 @@ #include "msvcrt.h" #include "cxx.h"
+#if _MSVCR_VER >= 100 + WINE_DEFAULT_DEBUG_CHANNEL(msvcrt);
/********************************************************************* @@ -354,3 +356,5 @@ bool __cdecl __ExceptionPtrCompare(const exception_ptr *ep1, const exception_ptr }
#endif + +#endif /* _MSVCR_VER >= 100 */