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
f51c752c
Commit
f51c752c
authored
Nov 21, 2022
by
Santino Mazza
Committed by
Alexandre Julliard
Nov 22, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernelbase: Create GetGeoInfoEx stub.
parent
a62400a8
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
0 deletions
+12
-0
kernel32.spec
dlls/kernel32/kernel32.spec
+1
-0
kernelbase.spec
dlls/kernelbase/kernelbase.spec
+1
-0
locale.c
dlls/kernelbase/locale.c
+9
-0
winnls.h
include/winnls.h
+1
-0
No files found.
dlls/kernel32/kernel32.spec
View file @
f51c752c
...
...
@@ -698,6 +698,7 @@
@ stdcall -import GetFullPathNameW(wstr long ptr ptr)
@ stdcall GetGeoInfoA(long long ptr long long)
@ stdcall -import GetGeoInfoW(long long ptr long long)
@ stdcall -import GetGeoInfoEx(ptr long ptr long)
@ stdcall GetHandleContext(long)
@ stdcall -import GetHandleInformation(long ptr)
@ stub -i386 GetLSCallbackTarget
...
...
dlls/kernelbase/kernelbase.spec
View file @
f51c752c
...
...
@@ -560,6 +560,7 @@
# @ stub GetGPOListInternalA
# @ stub GetGPOListInternalW
@ stdcall GetGeoInfoW(long long ptr long long)
@ stdcall GetGeoInfoEx(ptr long ptr long)
@ stdcall GetHandleInformation(long ptr)
# @ stub GetHivePath
# @ stub GetIntegratedDisplaySize
...
...
dlls/kernelbase/locale.c
View file @
f51c752c
...
...
@@ -5744,6 +5744,15 @@ INT WINAPI DECLSPEC_HOTPATCH GetGeoInfoW( GEOID id, GEOTYPE type, WCHAR *data, i
}
INT
WINAPI
DECLSPEC_HOTPATCH
GetGeoInfoEx
(
WCHAR
*
location
,
GEOTYPE
type
,
WCHAR
*
data
,
int
data_count
)
{
FIXME
(
"stub: %s %lx %p %d
\n
"
,
wine_dbgstr_w
(
location
),
type
,
data
,
data_count
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
}
/******************************************************************************
* GetLocaleInfoA (kernelbase.@)
*/
...
...
include/winnls.h
View file @
f51c752c
...
...
@@ -924,6 +924,7 @@ WINBASEAPI BOOL WINAPI GetFileMUIPath(DWORD,PCWSTR,PWSTR,PULONG,PWSTR,PUL
WINBASEAPI
INT
WINAPI
GetGeoInfoA
(
GEOID
,
GEOTYPE
,
LPSTR
,
INT
,
LANGID
);
WINBASEAPI
INT
WINAPI
GetGeoInfoW
(
GEOID
,
GEOTYPE
,
LPWSTR
,
INT
,
LANGID
);
#define GetGeoInfo WINELIB_NAME_AW(GetGeoInfo)
WINBASEAPI
INT
WINAPI
GetGeoInfoEx
(
PWSTR
,
GEOTYPE
,
PWSTR
,
INT
);
WINBASEAPI
INT
WINAPI
GetLocaleInfoA
(
LCID
,
LCTYPE
,
LPSTR
,
INT
);
WINBASEAPI
INT
WINAPI
GetLocaleInfoW
(
LCID
,
LCTYPE
,
LPWSTR
,
INT
);
#define GetLocaleInfo WINELIB_NAME_AW(GetLocaleInfo)
...
...
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