From 37296302c4a9d74239f9dd24f80c2b52673f95bf Mon Sep 17 00:00:00 2001 From: "KJK::Hyperion" Date: Fri, 24 Oct 2003 21:28:00 +0000 Subject: [PATCH] Fixed long-standing, annoying warnings in MSVCRT and CRTDLL svn path=/trunk/; revision=6423 --- reactos/lib/crtdll/except/exhand2.c | 2 ++ reactos/lib/msvcrt/except/exhand2.c | 3 +++ 2 files changed, 5 insertions(+) diff --git a/reactos/lib/crtdll/except/exhand2.c b/reactos/lib/crtdll/except/exhand2.c index 1cb9b1e3c74..2bda8f81be1 100644 --- a/reactos/lib/crtdll/except/exhand2.c +++ b/reactos/lib/crtdll/except/exhand2.c @@ -17,6 +17,8 @@ MsvcrtDebug(ULONG Value) //DbgPrint("MsvcrtDebug 0x%.08x\n", Value); } +struct _EXCEPTION_RECORD; +struct _CONTEXT; /* * @unimplemented diff --git a/reactos/lib/msvcrt/except/exhand2.c b/reactos/lib/msvcrt/except/exhand2.c index afa62d7666a..d7b0e9d6d54 100644 --- a/reactos/lib/msvcrt/except/exhand2.c +++ b/reactos/lib/msvcrt/except/exhand2.c @@ -14,6 +14,9 @@ MsvcrtDebug(ULONG Value) //DbgPrint("MsvcrtDebug 0x%.08x\n", Value); } +struct _EXCEPTION_RECORD; +struct _CONTEXT; + /* * @implemented */