Stubs for Get/SetUserGeoID().
This commit is contained in:
parent
d3863cfbf8
commit
bdfb12c0df
|
@ -505,7 +505,7 @@
|
|||
@ stdcall GetUserDefaultLCID()
|
||||
@ stdcall GetUserDefaultLangID()
|
||||
@ stdcall GetUserDefaultUILanguage()
|
||||
@ stub GetUserGeoID
|
||||
@ stdcall GetUserGeoID(long)
|
||||
@ stdcall GetVersion()
|
||||
@ stdcall GetVersionExA(ptr)
|
||||
@ stdcall GetVersionExW(ptr)
|
||||
|
@ -791,7 +791,7 @@
|
|||
@ stub SetTimerQueueTimer
|
||||
@ stdcall SetTimeZoneInformation(ptr)
|
||||
@ stdcall SetUnhandledExceptionFilter(ptr)
|
||||
@ stub SetUserGeoID
|
||||
@ stdcall SetUserGeoID(long)
|
||||
@ stdcall SetVolumeLabelA(str str)
|
||||
@ stdcall SetVolumeLabelW(wstr wstr)
|
||||
@ stub SetVolumeMountPointA
|
||||
|
|
|
@ -2184,3 +2184,21 @@ BOOL WINAPI InvalidateNLSCache(void)
|
|||
FIXME("() stub\n");
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* GetUserGeoID (KERNEL32.@)
|
||||
*/
|
||||
GEOID WINAPI GetUserGeoID( GEOCLASS GeoClass )
|
||||
{
|
||||
FIXME("%ld\n",GeoClass);
|
||||
return GEOID_NOT_AVAILABLE;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* SetUserGeoID (KERNEL32.@)
|
||||
*/
|
||||
BOOL WINAPI SetUserGeoID( GEOID GeoID )
|
||||
{
|
||||
FIXME("%ld\n",GeoID);
|
||||
return FALSE;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue