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
8bcdf427
Commit
8bcdf427
authored
May 11, 2005
by
Mike McCormack
Committed by
Alexandre Julliard
May 11, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stub implementation for GetGeoInfo.
parent
3c579064
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
2 deletions
+16
-2
kernel32.spec
dlls/kernel/kernel32.spec
+2
-2
locale.c
dlls/kernel/locale.c
+14
-0
No files found.
dlls/kernel/kernel32.spec
View file @
8bcdf427
...
...
@@ -417,8 +417,8 @@
@ stdcall GetFileType(long)
@ stdcall GetFullPathNameA(str long ptr ptr)
@ stdcall GetFullPathNameW(wstr long ptr ptr)
@ st
ub GetGeoInfoA
@ st
ub GetGeoInfoW
@ st
dcall GetGeoInfoA(long long ptr long long)
@ st
dcall GetGeoInfoW(long long ptr long long)
@ stdcall GetHandleContext(long)
@ stdcall GetHandleInformation(long ptr)
@ stub GetLSCallbackTarget
...
...
dlls/kernel/locale.c
View file @
8bcdf427
...
...
@@ -3230,3 +3230,17 @@ BOOL WINAPI EnumUILanguagesW(UILANGUAGE_ENUMPROCW pUILangEnumProc, DWORD dwFlags
pUILangEnumProc
(
value
,
lParam
);
return
(
TRUE
);
}
INT
WINAPI
GetGeoInfoW
(
GEOID
GeoId
,
GEOTYPE
GeoType
,
LPWSTR
lpGeoData
,
int
cchData
,
LANGID
language
)
{
FIXME
(
"%ld %ld %p %d %d
\n
"
,
GeoId
,
GeoType
,
lpGeoData
,
cchData
,
language
);
return
0
;
}
INT
WINAPI
GetGeoInfoA
(
GEOID
GeoId
,
GEOTYPE
GeoType
,
LPSTR
lpGeoData
,
int
cchData
,
LANGID
language
)
{
FIXME
(
"%ld %ld %p %d %d
\n
"
,
GeoId
,
GeoType
,
lpGeoData
,
cchData
,
language
);
return
0
;
}
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