Stubs for Get/SetUserGeoID().

This commit is contained in:
Mike McCormack 2003-10-01 03:12:02 +00:00 committed by Alexandre Julliard
parent d3863cfbf8
commit bdfb12c0df
2 changed files with 20 additions and 2 deletions

View File

@ -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

View File

@ -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;
}