Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
ee3a6770
Commit
ee3a6770
authored
Sep 18, 2010
by
André Hentschel
Committed by
Alexandre Julliard
Sep 20, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Add ARM support.
parent
bbfc0d1d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
file.c
dlls/kernel32/tests/file.c
+2
-0
loader.c
dlls/kernel32/tests/loader.c
+2
-0
No files found.
dlls/kernel32/tests/file.c
View file @
ee3a6770
...
...
@@ -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
...
...
dlls/kernel32/tests/loader.c
View file @
ee3a6770
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment