Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
8fdb55cf
Commit
8fdb55cf
authored
Aug 14, 2012
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp90: Fix the calling convention of the basic_string helpers.
parent
35dd7034
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
string.c
dlls/msvcp90/string.c
+2
-2
No files found.
dlls/msvcp90/string.c
View file @
8fdb55cf
...
...
@@ -1992,7 +1992,7 @@ basic_string_char* __thiscall basic_string_char_replace_cstr_len(basic_string_ch
}
/* Not exported from msvcp90 */
basic_string_char
*
basic_string_char_replace_helper
(
basic_string_char
*
this
,
basic_string_char
*
__stdcall
basic_string_char_replace_helper
(
basic_string_char
*
this
,
MSVCP_size_t
off
,
MSVCP_size_t
len
,
const
char
*
str
,
MSVCP_size_t
str_len
)
{
return
basic_string_char_replace_cstr_len
(
this
,
off
,
len
,
str
,
str_len
);
...
...
@@ -3951,7 +3951,7 @@ basic_string_wchar* __thiscall basic_string_wchar_replace_cstr_len(basic_string_
}
/* Not exported from msvcp90 */
basic_string_wchar
*
basic_string_wchar_replace_helper
(
basic_string_wchar
*
this
,
basic_string_wchar
*
__stdcall
basic_string_wchar_replace_helper
(
basic_string_wchar
*
this
,
MSVCP_size_t
off
,
MSVCP_size_t
len
,
const
wchar_t
*
str
,
MSVCP_size_t
str_len
)
{
return
basic_string_wchar_replace_cstr_len
(
this
,
off
,
len
,
str
,
str_len
);
...
...
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