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
34c5acdd
Commit
34c5acdd
authored
Jun 24, 2013
by
Stefan Leichter
Committed by
Alexandre Julliard
Jun 25, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp100/tests: Fix dynamically loaded functions for platform arm.
parent
e5c55c5a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
misc.c
dlls/msvcp100/tests/misc.c
+9
-0
No files found.
dlls/msvcp100/tests/misc.c
View file @
34c5acdd
...
...
@@ -111,12 +111,21 @@ static BOOL init(void)
SET
(
p__Container_base12__Getpfirst
,
"?_Getpfirst@_Container_base12@std@@QEBAPEAPEAU_Iterator_base12@2@XZ"
);
SET
(
p__Container_base12__Swap_all
,
"?_Swap_all@_Container_base12@std@@QEAAXAEAU12@@Z"
);
}
else
{
#ifdef __arm__
SET
(
p__Container_base12_copy_ctor
,
"??0_Container_base12@std@@QAA@ABU01@@Z"
);
SET
(
p__Container_base12_ctor
,
"??0_Container_base12@std@@QAE@XZ"
);
SET
(
p__Container_base12__Orphan_all
,
"?_Orphan_all@_Container_base12@std@@QAAXXZ"
);
SET
(
p__Container_base12_dtor
,
"??1_Container_base12@std@@QAA@XZ"
);
SET
(
p__Container_base12__Getpfirst
,
"?_Getpfirst@_Container_base12@std@@QBAPAPAU_Iterator_base12@2@XZ"
);
SET
(
p__Container_base12__Swap_all
,
"?_Swap_all@_Container_base12@std@@QAAXAAU12@@Z"
);
#else
SET
(
p__Container_base12_copy_ctor
,
"??0_Container_base12@std@@QAE@ABU01@@Z"
);
SET
(
p__Container_base12_ctor
,
"??0_Container_base12@std@@QAE@XZ"
);
SET
(
p__Container_base12__Orphan_all
,
"?_Orphan_all@_Container_base12@std@@QAEXXZ"
);
SET
(
p__Container_base12_dtor
,
"??1_Container_base12@std@@QAE@XZ"
);
SET
(
p__Container_base12__Getpfirst
,
"?_Getpfirst@_Container_base12@std@@QBEPAPAU_Iterator_base12@2@XZ"
);
SET
(
p__Container_base12__Swap_all
,
"?_Swap_all@_Container_base12@std@@QAEXAAU12@@Z"
);
#endif
/* __arm__ */
}
init_thiscall_thunk
();
...
...
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