kernelbase: Create GetGeoInfoEx stub.
This commit is contained in:
parent
a62400a8df
commit
f51c752c43
4 changed files with 12 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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.@)
|
||||
*/
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue