Basic context, frames and exceptions definitions
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
2023-01-07 23:31:37 +01:00
parent f74ba62f24
commit ca1d7ddfe8
10 changed files with 459 additions and 9 deletions

21
sdk/xtdk/kertptr.h Normal file
View File

@@ -0,0 +1,21 @@
/**
* 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 */