exectos/xtoskrnl/includes/amd64/rtli.h
Rafal Kupiec dddd1eb183
All checks were successful
Builds / ExectOS (amd64) (push) Successful in 26s
Builds / ExectOS (i686) (push) Successful in 25s
Rename internal kernel headers to distinguish them easily from XTDK
2023-11-29 20:39:59 +01:00

22 lines
587 B
C

/**
* PROJECT: ExectOS
* COPYRIGHT: See COPYING.md in the top level directory
* FILE: xtoskrnl/includes/amd64/rtli.h
* DESCRIPTION: XT runtime library routines specific to AMD64 architecture
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
*/
#ifndef __XTOSKRNL_AMD64_RTLI_H
#define __XTOSKRNL_AMD64_RTLI_H
#include <xtos.h>
/* Runtime Library routines specific to AMD64 forward references */
XTAPI
VOID
RtlGetStackLimits(OUT PULONG_PTR StackBase,
OUT PULONG_PTR StackLimit);
#endif /* __XTOSKRNL_AMD64_RTLI_H */