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
f3abe0bd
Commit
f3abe0bd
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 locale::_Init implementation.
parent
866b616d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
2 deletions
+23
-2
msvcp110.spec
dlls/msvcp110/msvcp110.spec
+2
-2
locale.c
dlls/msvcp90/locale.c
+21
-0
No files found.
dlls/msvcp110/msvcp110.spec
View file @
f3abe0bd
...
...
@@ -1467,8 +1467,8 @@
@ cdecl -arch=arm ?_Init@ios_base@std@@IAAXXZ(ptr) ios_base__Init
@ thiscall -arch=i386 ?_Init@ios_base@std@@IAEXXZ(ptr) ios_base__Init
@ cdecl -arch=win64 ?_Init@ios_base@std@@IEAAXXZ(ptr) ios_base__Init
@
stub -arch=win32 ?_Init@locale@std@@CAPAV_Locimp@12@_N@Z
@
stub -arch=win64 ?_Init@locale@std@@CAPEAV_Locimp@12@_N@Z
@
cdecl -arch=win32 ?_Init@locale@std@@CAPAV_Locimp@12@_N@Z(long) locale__Init_ref
@
cdecl -arch=win64 ?_Init@locale@std@@CAPEAV_Locimp@12@_N@Z(long) locale__Init_ref
@ extern ?_Init_cnt@Init@ios_base@std@@0HA ios_base_Init__Init_cnt
# extern ?_Init_cnt@_UShinit@std@@0HA
@ extern ?_Init_cnt@_Winit@std@@0HA _Winit__Init_cnt
...
...
dlls/msvcp90/locale.c
View file @
f3abe0bd
...
...
@@ -9845,6 +9845,27 @@ locale__Locimp* __cdecl locale__Init(void)
return
global_locale
;
}
/* ?_Init@locale@std@@CAPAV_Locimp@12@_N@Z */
/* ?_Init@locale@std@@CAPEAV_Locimp@12@_N@Z */
locale__Locimp
*
__cdecl
locale__Init_ref
(
MSVCP_bool
inc_ref
)
{
locale__Locimp
*
ret
;
_Lockit
lock
;
TRACE
(
"(%x)
\n
"
,
inc_ref
);
_Lockit_ctor_locktype
(
&
lock
,
_LOCK_LOCALE
);
if
(
inc_ref
&&
global_locale
)
{
call_locale_facet__Incref
(
&
global_locale
->
facet
);
_Lockit_dtor
(
&
lock
);
return
global_locale
;
}
ret
=
locale__Init
();
_Lockit_dtor
(
&
lock
);
return
ret
;
}
/* ??0locale@std@@QAE@ABV01@0H@Z */
/* ??0locale@std@@QEAA@AEBV01@0H@Z */
DEFINE_THISCALL_WRAPPER
(
locale_ctor_locale_locale
,
16
)
...
...
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