https://git.reactos.org/?p=reactos.git;a=commitdiff;h=3636b46dfd419942502ba6ac51e9bd00744c789f
commit 3636b46dfd419942502ba6ac51e9bd00744c789f Author: Andrew Boyarshin <[email protected]> AuthorDate: Sun Nov 25 14:45:49 2018 +0700 Commit: Mark Jansen <[email protected]> CommitDate: Tue Jan 8 18:58:56 2019 +0100 [SPEC2DEF] Fix compilation of generated stub C files with int64 parameters --- sdk/include/reactos/stubs.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sdk/include/reactos/stubs.h b/sdk/include/reactos/stubs.h index d8c59c9fa5..21b85d492d 100644 --- a/sdk/include/reactos/stubs.h +++ b/sdk/include/reactos/stubs.h @@ -1,6 +1,10 @@ #define WIN32_NO_STATUS #include <windef.h> +#ifndef PRIx64 +#define PRIx64 "I64x" +#endif + #define EXCEPTION_WINE_STUB 0x80000100 #define EH_NONCONTINUABLE 0x01
