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
1d1ea6eb
Commit
1d1ea6eb
authored
Jan 14, 2014
by
Piotr Caban
Committed by
Alexandre Julliard
Jan 14, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp110: Add _New_Locimp implementation.
parent
f3abe0bd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
38 additions
and
4 deletions
+38
-4
msvcp110.spec
dlls/msvcp110/msvcp110.spec
+4
-4
locale.c
dlls/msvcp90/locale.c
+34
-0
No files found.
dlls/msvcp110/msvcp110.spec
View file @
1d1ea6eb
...
...
@@ -1637,10 +1637,10 @@
@ stub -arch=win64 ?_Mtx_new@threads@stdext@@YAXAEAPEAX@Z
@ stub -arch=win32 ?_Mtx_unlock@threads@stdext@@YAXPAX@Z
@ stub -arch=win64 ?_Mtx_unlock@threads@stdext@@YAXPEAX@Z
@
stub -arch=win32 ?_New_Locimp@_Locimp@locale@std@@CAPAV123@ABV123@@Z
@
stub -arch=win64 ?_New_Locimp@_Locimp@locale@std@@CAPEAV123@AEBV123@@Z
@
stub -arch=win32 ?_New_Locimp@_Locimp@locale@std@@CAPAV123@_N@Z
@
stub -arch=win64 ?_New_Locimp@_Locimp@locale@std@@CAPEAV123@_N@Z
@
cdecl -arch=win32 ?_New_Locimp@_Locimp@locale@std@@CAPAV123@ABV123@@Z(ptr) locale__Locimp__New_Locimp
@
cdecl -arch=win64 ?_New_Locimp@_Locimp@locale@std@@CAPEAV123@AEBV123@@Z(ptr) locale__Locimp__New_Locimp
@
cdecl -arch=win32 ?_New_Locimp@_Locimp@locale@std@@CAPAV123@_N@Z(long) locale__Locimp__New_Locimp_transparent
@
cdecl -arch=win64 ?_New_Locimp@_Locimp@locale@std@@CAPEAV123@_N@Z(long) locale__Locimp__New_Locimp_transparent
@ stub -arch=win32 ?_Open_dir@sys@tr2@std@@YAPAXPADPBDAAHAAW4file_type@123@@Z
@ stub -arch=win64 ?_Open_dir@sys@tr2@std@@YAPEAXPEADPEBDAEAHAEAW4file_type@123@@Z
@ stub -arch=win32 ?_Open_dir@sys@tr2@std@@YAPAXPA_WPB_WAAHAAW4file_type@123@@Z
...
...
dlls/msvcp90/locale.c
View file @
1d1ea6eb
...
...
@@ -9357,6 +9357,40 @@ locale__Locimp* __thiscall locale__Locimp_vector_dtor(locale__Locimp *this, unsi
return
this
;
}
/* ?_New_Locimp@_Locimp@locale@std@@CAPAV123@ABV123@@Z */
/* ?_New_Locimp@_Locimp@locale@std@@CAPEAV123@AEBV123@@Z */
locale__Locimp
*
__cdecl
locale__Locimp__New_Locimp
(
const
locale__Locimp
*
copy
)
{
locale__Locimp
*
ret
;
TRACE
(
"(%p)
\n
"
,
copy
);
ret
=
MSVCRT_operator_new
(
sizeof
(
locale__Locimp
));
if
(
!
ret
)
{
ERR
(
"Out of memory
\n
"
);
throw_exception
(
EXCEPTION_BAD_ALLOC
,
NULL
);
return
NULL
;
}
return
locale__Locimp_copy_ctor
(
ret
,
copy
);
}
/* ?_New_Locimp@_Locimp@locale@std@@CAPAV123@_N@Z */
/* ?_New_Locimp@_Locimp@locale@std@@CAPEAV123@_N@Z */
locale__Locimp
*
__cdecl
locale__Locimp__New_Locimp_transparent
(
MSVCP_bool
transparent
)
{
locale__Locimp
*
ret
;
TRACE
(
"(%x)
\n
"
,
transparent
);
ret
=
MSVCRT_operator_new
(
sizeof
(
locale__Locimp
));
if
(
!
ret
)
{
ERR
(
"Out of memory
\n
"
);
throw_exception
(
EXCEPTION_BAD_ALLOC
,
NULL
);
return
NULL
;
}
return
locale__Locimp_ctor_transparent
(
ret
,
transparent
);
}
/* ?_Locimp_Addfac@_Locimp@locale@std@@CAXPAV123@PAVfacet@23@I@Z */
/* ?_Locimp_Addfac@_Locimp@locale@std@@CAXPEAV123@PEAVfacet@23@_K@Z */
void
__cdecl
locale__Locimp__Locimp_Addfac
(
locale__Locimp
*
locimp
,
locale_facet
*
facet
,
MSVCP_size_t
id
)
...
...
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