Implement RtlGetStackLimits() routine

Este commit está contenido en:
2023-02-15 20:12:58 +01:00
padre d28687631b
commit b1c2b209e3
Se han modificado 6 ficheros con 113 adiciones y 1 borrados

22
sdk/xtdk/amd64/rtlfuncs.h Archivo normal
Ver fichero

@@ -0,0 +1,22 @@
/**
* PROJECT: ExectOS
* COPYRIGHT: See COPYING.md in the top level directory
* FILE: sdk/xtdk/amd64/rtlfuncs.h
* DESCRIPTION: XT runtime library routines specific to AMD64 architecture
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
*/
#ifndef __XTDK_AMD64_RTLFUNCS_H
#define __XTDK_AMD64_RTLFUNCS_H
#include <xtdefs.h>
#include <xtstruct.h>
#include <xttypes.h>
XTAPI
VOID
RtlGetStackLimits(OUT PULONG_PTR StackBase,
OUT PULONG_PTR StackLimit);
#endif /* __XTDK_AMD64_RTLFUNCS_H */