Commit ee3a6770 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

kernel32: Add ARM support.

parent bbfc0d1d
......@@ -1729,6 +1729,8 @@ static BOOL create_fake_dll( LPCSTR filename )
nt->FileHeader.Machine = IMAGE_FILE_MACHINE_POWERPC;
#elif defined __sparc__
nt->FileHeader.Machine = IMAGE_FILE_MACHINE_SPARC;
#elif defined __arm__
nt->FileHeader.Machine = IMAGE_FILE_MACHINE_ARM;
#else
# error You must specify the machine type
#endif
......
......@@ -56,6 +56,8 @@ static IMAGE_NT_HEADERS nt_header =
IMAGE_FILE_MACHINE_POWERPC, /* Machine */
#elif defined __sparc__
IMAGE_FILE_MACHINE_SPARC, /* Machine */
#elif defined __arm__
IMAGE_FILE_MACHINE_ARM, /* 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