update for HEAD-2003091401
[reactos.git] / lib / kernel32 / except / except.c
index 25116d5..a533af6 100644 (file)
@@ -29,6 +29,10 @@ UINT GetErrorMode(void)
        return GlobalErrMode;
 }
 
+
+/*
+ * @implemented
+ */
 UINT 
 STDCALL
 SetErrorMode(  UINT uMode  )
@@ -38,6 +42,10 @@ SetErrorMode(  UINT uMode  )
        return OldErrMode;
 }
 
+
+/*
+ * @implemented
+ */
 LPTOP_LEVEL_EXCEPTION_FILTER
 STDCALL
 SetUnhandledExceptionFilter(
@@ -46,11 +54,14 @@ SetUnhandledExceptionFilter(
 {
     LPTOP_LEVEL_EXCEPTION_FILTER OldTopLevelExceptionFilter =
                                         GlobalTopLevelExceptionFilter;
-    lpTopLevelExceptionFilter = GlobalTopLevelExceptionFilter;
+    GlobalTopLevelExceptionFilter = lpTopLevelExceptionFilter;
     return OldTopLevelExceptionFilter;
 }
 
 
+/*
+ * @unimplemented
+ */
 LONG
 STDCALL
 UnhandledExceptionFilter(struct _EXCEPTION_POINTERS *ExceptionInfo)
@@ -96,6 +107,10 @@ UnhandledExceptionFilter(struct _EXCEPTION_POINTERS *ExceptionInfo)
        
 }
 
+
+/*
+ * @implemented
+ */
 VOID
 STDCALL
 RaiseException (