exectos/sdk/xtdk/kertptr.h
belliash ca1d7ddfe8
All checks were successful
ci/woodpecker/push/build Pipeline was successful
Basic context, frames and exceptions definitions
2023-01-07 23:36:50 +01:00

22 lines
662 B
C

/**
* PROJECT: ExectOS
* COPYRIGHT: See COPYING.md in the top level directory
* FILE: sdk/xtdk/kertptr.h
* DESCRIPTION: XT kernel core handlers and routine pointers
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
*/
#ifndef __XTDK_KERTPTR_H
#define __XTDK_KERTPTR_H
#include <xtstruct.h>
#include <xttarget.h>
#include <xttypes.h>
#include ARCH_HEADER(ketypes.h)
/* Kernel routine callbacks */
typedef EXCEPTION_DISPOSITION (*PEXCEPTION_ROUTINE)(IN PEXCEPTION_RECORD ExceptionRecord, IN PVOID EstablisherFrame, IN OUT PCONTEXT ContextRecord, IN OUT PVOID DispatcherContext);
#endif /* __XTDK_KERTPTR_H */