mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 17:16:43 +00:00
[SDK] Move definition of MyInt128 into stubs.h
This commit is contained in:
parent
a27b8009e0
commit
40d444919e
2 changed files with 7 additions and 7 deletions
|
@ -31,6 +31,13 @@ typedef struct _EXCEPTION_RECORD {
|
||||||
#define EXCEPTION_WINE_STUB 0x80000100
|
#define EXCEPTION_WINE_STUB 0x80000100
|
||||||
#define EH_NONCONTINUABLE 0x01
|
#define EH_NONCONTINUABLE 0x01
|
||||||
|
|
||||||
|
/* __int128 is not supported on x86, so use a custom type */
|
||||||
|
typedef struct
|
||||||
|
{
|
||||||
|
__int64 lower;
|
||||||
|
__int64 upper;
|
||||||
|
} MyInt128;
|
||||||
|
|
||||||
void
|
void
|
||||||
__stdcall
|
__stdcall
|
||||||
RtlRaiseException(
|
RtlRaiseException(
|
||||||
|
|
|
@ -228,13 +228,6 @@ OutputHeader_stub(FILE *file)
|
||||||
fprintf(file, "WINE_DECLARE_DEBUG_CHANNEL(relay);\n");
|
fprintf(file, "WINE_DECLARE_DEBUG_CHANNEL(relay);\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
/* __int128 is not supported on x86, so use a custom type */
|
|
||||||
fprintf(file, "\n"
|
|
||||||
"typedef struct {\n"
|
|
||||||
" __int64 lower;\n"
|
|
||||||
" __int64 upper;\n"
|
|
||||||
"} MyInt128;\n");
|
|
||||||
|
|
||||||
fprintf(file, "\n");
|
fprintf(file, "\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue