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
e24f2f3b
Commit
e24f2f3b
authored
Nov 13, 2018
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Support delegated proxies on ARM.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
da383cb8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
0 deletions
+19
-0
cstub.c
dlls/rpcrt4/cstub.c
+19
-0
No files found.
dlls/rpcrt4/cstub.c
View file @
e24f2f3b
...
...
@@ -167,6 +167,25 @@ typedef struct
static
const
BYTE
opcodes
[
16
]
=
{
0x48
,
0x8b
,
0x49
,
0x20
,
0x48
,
0x8b
,
0x01
,
0xff
,
0xa0
,
0
,
0
,
0
,
0
,
0x48
,
0x8d
,
0x36
};
#elif defined(__arm__)
static
const
DWORD
opcodes
[]
=
{
0xe52d4004
,
/* push {r4} */
0xe5900010
,
/* ldr r0, [r0, #16] */
0xe5904000
,
/* ldr r4, [r0] */
0xe59fc008
,
/* ldr ip, [pc, #8] */
0xe08cc004
,
/* add ip, ip, r4 */
0xe49d4004
,
/* pop {r4} */
0xe59cf000
/* ldr pc, [ip] */
};
typedef
struct
{
DWORD
opcodes
[
ARRAY_SIZE
(
opcodes
)];
DWORD
offset
;
}
vtbl_method_t
;
#else
#warning You must implement delegated proxies/stubs for your CPU
...
...
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