Implemented (from Wine): BeginUpdateResourceA, BeginUpdateResourceW, UpdateResourceA, UpdateResourceW, EnumResourceLanguagesW, EnumResourceLanguagesA, EndUpdateResourceA, EndUpdateResourceW, EnumResourceTypesW, EnumResourceTypesA

Small fixes: GetSystemInfo, IsProcessorFeaturePresent, LockResource

svn path=/trunk/; revision=32899
This commit is contained in:
Dmitry Chapyshev 2008-04-09 19:05:08 +00:00
parent 1dcd1dfce4
commit 42939fd61b
2 changed files with 1349 additions and 96 deletions

File diff suppressed because it is too large Load diff

View file

@ -146,7 +146,7 @@ GetSystemInfo (
Si->dwProcessorType = PROCESSOR_PPC_620;
break;
default:
Si->dwProcessorType = -1;
Si->dwProcessorType = 0;
}
break;
@ -171,12 +171,12 @@ GetSystemInfo (
/*
* @unimplemented
* @implemented
*/
BOOL STDCALL
IsProcessorFeaturePresent(DWORD ProcessorFeature)
{
if (ProcessorFeature >= PROCESSOR_FEATURE_MAX)
if (ProcessorFeature > PROCESSOR_FEATURE_MAX)
return(FALSE);
return((BOOL)SharedUserData->ProcessorFeatures[ProcessorFeature]);