exectos/xtoskrnl/includes/i686/rtl.h
belliash f05a262da2
All checks were successful
Builds / ExectOS (amd64) (push) Successful in 30s
Builds / ExectOS (i686) (push) Successful in 28s
Cleanup XTDK and XTOSKRNL headers
2023-10-29 09:58:47 +01:00

22 lines
577 B
C

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