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
afa53a37
Commit
afa53a37
authored
Aug 27, 2010
by
Louis Lenders
Committed by
Alexandre Julliard
Aug 30, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Add stub for GetUserDefaultLocaleName.
parent
7c9b5251
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
0 deletions
+8
-0
kernel32.spec
dlls/kernel32/kernel32.spec
+1
-0
locale.c
dlls/kernel32/locale.c
+6
-0
winnls.h
include/winnls.h
+1
-0
No files found.
dlls/kernel32/kernel32.spec
View file @
afa53a37
...
...
@@ -660,6 +660,7 @@
@ stdcall GetTimeZoneInformation(ptr)
@ stdcall GetUserDefaultLCID()
@ stdcall GetUserDefaultLangID()
@ stdcall GetUserDefaultLocaleName(ptr long)
@ stdcall GetUserDefaultUILanguage()
@ stdcall GetUserGeoID(long)
@ stub GetVDMCurrentDirectories
...
...
dlls/kernel32/locale.c
View file @
afa53a37
...
...
@@ -3798,3 +3798,9 @@ INT WINAPI GetGeoInfoA(GEOID GeoId, GEOTYPE GeoType, LPSTR lpGeoData,
FIXME
(
"%d %d %p %d %d
\n
"
,
GeoId
,
GeoType
,
lpGeoData
,
cchData
,
language
);
return
0
;
}
INT
WINAPI
GetUserDefaultLocaleName
(
LPWSTR
localename
,
int
buffersize
)
{
FIXME
(
"(%p, %d) stub!
\n
"
,
localename
,
buffersize
);
return
0
;
}
include/winnls.h
View file @
afa53a37
...
...
@@ -767,6 +767,7 @@ WINBASEAPI INT WINAPI GetTimeFormatW(LCID,DWORD,const SYSTEMTIME*,LPCWST
#define GetTimeFormat WINELIB_NAME_AW(GetTimeFormat)
WINBASEAPI
LANGID
WINAPI
GetUserDefaultLangID
(
void
);
WINBASEAPI
LCID
WINAPI
GetUserDefaultLCID
(
void
);
WINBASEAPI
INT
WINAPI
GetUserDefaultLocaleName
(
LPWSTR
,
int
);
WINBASEAPI
LANGID
WINAPI
GetUserDefaultUILanguage
(
void
);
WINBASEAPI
GEOID
WINAPI
GetUserGeoID
(
GEOCLASS
);
WINBASEAPI
BOOL
WINAPI
IsDBCSLeadByte
(
BYTE
);
...
...
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