ReactOS Fundraising Campaign 2012
 
€ 4,410 / € 30,000

Information | Donate

Home | Info | Community | Development | myReactOS | Contact Us

  1. Home
  2. Community
  3. Development
  4. myReactOS
  5. Fundraiser 2012

  1. Main Page
  2. Alphabetical List
  3. Data Structures
  4. Directories
  5. File List
  6. Data Fields
  7. Globals
  8. Related Pages

ReactOS Development > Doxygen

except.c
Go to the documentation of this file.
00001 /* COPYRIGHT:       See COPYING in the top level directory
00002  * PROJECT:         ReactOS Runtime Library
00003  * PURPOSE:         User-Mode Exception Support
00004  * FILE:            lib/rtl/exception.c
00005  * PROGRAMERS:      Alex Ionescu (alex@relsoft.net)
00006  *                  David Welch <welch@cwcom.net>
00007  *                  Skywing <skywing@valhallalegends.com>
00008  *                  KJK::Hyperion <noog@libero.it>
00009  */
00010 
00011 /* INCLUDES *****************************************************************/
00012 
00013 #include <rtl.h>
00014 #define NDEBUG
00015 #include <debug.h>
00016 
00017 NTSYSAPI
00018 VOID
00019 NTAPI
00020 RtlCaptureContext
00021 (OUT PCONTEXT ContextRecord)
00022 {
00023     // XXX arty fixme
00024 }
00025 
00026 NTSYSAPI
00027 BOOLEAN
00028 NTAPI
00029 RtlDispatchException
00030 (IN PEXCEPTION_RECORD ExceptionRecord,
00031  IN PCONTEXT Context)
00032 {
00033     // XXX arty fixme
00034     return TRUE;
00035 }
00036 
00037 VOID
00038 NTAPI
00039 RtlUnwind(IN PVOID TargetFrame OPTIONAL,
00040           IN PVOID TargetIp OPTIONAL,
00041           IN PEXCEPTION_RECORD ExceptionRecord OPTIONAL,
00042           IN PVOID ReturnValue)
00043 {
00044     // XXX arty fixme
00045 }
00046 
00047 NTSYSAPI
00048 VOID
00049 NTAPI
00050 RtlGetCallersAddress(
00051     OUT PVOID  *CallersAddress,
00052     OUT PVOID  *CallersCaller)
00053 {
00054 }

Generated on Sat May 26 2012 04:22:57 for ReactOS by doxygen 1.7.6.1

ReactOS is a registered trademark or a trademark of ReactOS Foundation in the United States and other countries.