mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 03:54:02 +00:00
[CRT]: Define JBLEN and JBTYPE for ARM, based on the Windows ARM CRT source code (public).
svn path=/trunk/; revision=49729
This commit is contained in:
parent
26d84c43e2
commit
af01d7d129
1 changed files with 9 additions and 0 deletions
|
@ -129,6 +129,15 @@ extern "C" {
|
|||
SETJMP_FLOAT128 Xmm15;
|
||||
} _JUMP_BUFFER;
|
||||
|
||||
#elif defined(_M_ARM)
|
||||
|
||||
#define _JBLEN 11
|
||||
#define _JBTYPE int
|
||||
|
||||
#else
|
||||
|
||||
#error Define Setjmp for this architecture!
|
||||
|
||||
#endif
|
||||
|
||||
#ifndef _JMP_BUF_DEFINED
|
||||
|
|
Loading…
Reference in a new issue