userenv: Make GetProfileType report a normal (non-roaming) profile.

This commit is contained in:
Yuval Fledel 2007-04-20 22:59:06 +03:00 committed by Alexandre Julliard
parent 355d3c7e47
commit ec16e6323e

View file

@ -111,7 +111,7 @@ BOOL WINAPI GetProfilesDirectoryW( LPWSTR lpProfilesDir, LPDWORD lpcchSize )
BOOL WINAPI GetProfileType( LPDWORD pdwFlags )
{
FIXME("%p\n", pdwFlags );
*pdwFlags = PT_MANDATORY | PT_ROAMING | PT_TEMPORARY;
*pdwFlags = 0;
return TRUE;
}