Commit bdfb12c0 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

Stubs for Get/SetUserGeoID().

parent d3863cfb
......@@ -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;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment