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
9e3e9b49
Commit
9e3e9b49
authored
Jun 19, 2013
by
Stefan Leichter
Committed by
Alexandre Julliard
Jun 20, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp100/tests: Fix dynamically loaded functions for platform arm.
parent
15171d8d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
string.c
dlls/msvcp100/tests/string.c
+8
-0
No files found.
dlls/msvcp100/tests/string.c
View file @
9e3e9b49
...
...
@@ -100,11 +100,19 @@ static BOOL init(void)
SET
(
_Yarn_char_c_str
,
"?_C_str@?$_Yarn@D@std@@QEBAPEBDXZ"
);
SET
(
_Yarn_char_empty
,
"?_Empty@?$_Yarn@D@std@@QEBA_NXZ"
);
}
else
{
#ifdef __arm__
SET
(
_Yarn_char_ctor_cstr
,
"??0?$_Yarn@D@std@@QAA@PBD@Z"
);
SET
(
_Yarn_char_copy_ctor
,
"??0?$_Yarn@D@std@@QAA@ABV01@@Z"
);
SET
(
_Yarn_char_dtor
,
"??1?$_Yarn@D@std@@QAA@XZ"
);
SET
(
_Yarn_char_c_str
,
"?_C_str@?$_Yarn@D@std@@QBAPBDXZ"
);
SET
(
_Yarn_char_empty
,
"?_Empty@?$_Yarn@D@std@@QBA_NXZ"
);
#else
SET
(
_Yarn_char_ctor_cstr
,
"??0?$_Yarn@D@std@@QAE@PBD@Z"
);
SET
(
_Yarn_char_copy_ctor
,
"??0?$_Yarn@D@std@@QAE@ABV01@@Z"
);
SET
(
_Yarn_char_dtor
,
"??1?$_Yarn@D@std@@QAE@XZ"
);
SET
(
_Yarn_char_c_str
,
"?_C_str@?$_Yarn@D@std@@QBEPBDXZ"
);
SET
(
_Yarn_char_empty
,
"?_Empty@?$_Yarn@D@std@@QBE_NXZ"
);
#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