Some fixes.
[reactos.git] / reactos / lib / ntdll / rtl / exception.c
1 /* $Id: exception.c,v 1.1 2000/05/13 13:50:57 dwelch Exp $
2 *
3 * COPYRIGHT: See COPYING in the top level directory
4 * PROJECT: ReactOS kernel
5 * PURPOSE: User-mode exception support
6 * FILE: lib/ntdll/rtl/exception.c
7 * PROGRAMER: David Welch <welch@cwcom.net>
8 */
9
10 /* INCLUDES *****************************************************************/
11
12 #include <ddk/ntddk.h>
13 #include <string.h>
14
15 #include <internal/debug.h>
16
17 /* FUNCTIONS ***************************************************************/
18
19 VOID KiUserExceptionDispatcher(PEXCEPTION_RECORD ExceptionRecord,
20 PCONTEXT Context)
21 {
22
23 }