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
b586be51
Commit
b586be51
authored
Jul 22, 2012
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jul 23, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Added GetSystemDefaultLocaleName().
parent
a56f3c66
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
0 deletions
+9
-0
kernel32.spec
dlls/kernel32/kernel32.spec
+1
-0
locale.c
dlls/kernel32/locale.c
+8
-0
No files found.
dlls/kernel32/kernel32.spec
View file @
b586be51
...
...
@@ -634,6 +634,7 @@
@ stdcall GetStringTypeW(long wstr long ptr)
@ stdcall GetSystemDefaultLCID()
@ stdcall GetSystemDefaultLangID()
@ stdcall GetSystemDefaultLocaleName(ptr long)
@ stdcall GetSystemDefaultUILanguage()
@ stdcall GetSystemDEPPolicy()
@ stdcall GetSystemDirectoryA(ptr long)
...
...
dlls/kernel32/locale.c
View file @
b586be51
...
...
@@ -931,6 +931,14 @@ LCID WINAPI GetSystemDefaultLCID(void)
return
lcid
;
}
/***********************************************************************
* GetSystemDefaultLocaleName (KERNEL32.@)
*/
INT
WINAPI
GetSystemDefaultLocaleName
(
LPWSTR
localename
,
INT
len
)
{
LCID
lcid
=
GetSystemDefaultLCID
();
return
LCIDToLocaleName
(
lcid
,
localename
,
len
,
0
);
}
/***********************************************************************
* GetUserDefaultUILanguage (KERNEL32.@)
...
...
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