Commit 90b5342f authored by Austin English's avatar Austin English Committed by Alexandre Julliard

kernel32/tests: Sparc fixes.

parent b3b55ea4
......@@ -1727,6 +1727,8 @@ static BOOL create_fake_dll( LPCSTR filename )
nt->FileHeader.Machine = IMAGE_FILE_MACHINE_AMD64;
#elif defined __powerpc__
nt->FileHeader.Machine = IMAGE_FILE_MACHINE_POWERPC;
#elif defined __sparc__
nt->FileHeader.Machine = IMAGE_FILE_MACHINE_SPARC;
#else
# error You must specify the machine type
#endif
......
......@@ -54,6 +54,8 @@ static IMAGE_NT_HEADERS nt_header =
IMAGE_FILE_MACHINE_AMD64, /* Machine */
#elif defined __powerpc__
IMAGE_FILE_MACHINE_POWERPC, /* Machine */
#elif defined __sparc__
IMAGE_FILE_MACHINE_SPARC, /* Machine */
#else
# error You must specify the machine type
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment