mirror of
https://github.com/reactos/reactos.git
synced 2025-04-19 12:08:55 +00:00
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:
parent
1dcd1dfce4
commit
42939fd61b
2 changed files with 1349 additions and 96 deletions
File diff suppressed because it is too large
Load diff
|
@ -146,7 +146,7 @@ GetSystemInfo (
|
||||||
Si->dwProcessorType = PROCESSOR_PPC_620;
|
Si->dwProcessorType = PROCESSOR_PPC_620;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
Si->dwProcessorType = -1;
|
Si->dwProcessorType = 0;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
@ -171,12 +171,12 @@ GetSystemInfo (
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @unimplemented
|
* @implemented
|
||||||
*/
|
*/
|
||||||
BOOL STDCALL
|
BOOL STDCALL
|
||||||
IsProcessorFeaturePresent(DWORD ProcessorFeature)
|
IsProcessorFeaturePresent(DWORD ProcessorFeature)
|
||||||
{
|
{
|
||||||
if (ProcessorFeature >= PROCESSOR_FEATURE_MAX)
|
if (ProcessorFeature > PROCESSOR_FEATURE_MAX)
|
||||||
return(FALSE);
|
return(FALSE);
|
||||||
|
|
||||||
return((BOOL)SharedUserData->ProcessorFeatures[ProcessorFeature]);
|
return((BOOL)SharedUserData->ProcessorFeatures[ProcessorFeature]);
|
||||||
|
|
Loading…
Reference in a new issue