kernel32: Add GetEnabledXStateFeatures() stub.
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
d4cc71c5db
commit
cb05be7bff
|
@ -1,5 +1,5 @@
|
|||
@ stub CopyContext
|
||||
@ stub GetEnabledXStateFeatures
|
||||
@ stdcall -ret64 -arch=i386,x86_64 GetEnabledXStateFeatures() kernel32.GetEnabledXStateFeatures
|
||||
@ stub GetXStateFeaturesMask
|
||||
@ stub InitializeContext
|
||||
@ stub LocateXStateFeature
|
||||
|
|
|
@ -327,3 +327,12 @@ DWORD WINAPI GetActiveProcessorCount(WORD group)
|
|||
FIXME("semi-stub, returning %u\n", cpus);
|
||||
return cpus;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* GetEnabledXStateFeatures (KERNEL32.@)
|
||||
*/
|
||||
DWORD64 WINAPI GetEnabledXStateFeatures(void)
|
||||
{
|
||||
FIXME("\n");
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -657,7 +657,7 @@
|
|||
# @ stub GetDurationFormat
|
||||
# @ stub GetDurationFormatEx
|
||||
@ stdcall GetDynamicTimeZoneInformation(ptr)
|
||||
# @ stub GetEnabledXStateFeatures
|
||||
@ stdcall -ret64 -arch=i386,x86_64 GetEnabledXStateFeatures()
|
||||
@ stdcall GetEnvironmentStrings() GetEnvironmentStringsA
|
||||
@ stdcall GetEnvironmentStringsA()
|
||||
@ stdcall GetEnvironmentStringsW()
|
||||
|
|
|
@ -491,7 +491,7 @@
|
|||
# @ stub GetEffectivePackageStatusForUser
|
||||
# @ stub GetEightBitStringToUnicodeSizeRoutine
|
||||
# @ stub GetEightBitStringToUnicodeStringRoutine
|
||||
# @ stub GetEnabledXStateFeatures
|
||||
@ stdcall -ret64 -arch=i386,x86_64 GetEnabledXStateFeatures() kernel32.GetEnabledXStateFeatures
|
||||
@ stdcall GetEnvironmentStrings() kernel32.GetEnvironmentStrings
|
||||
@ stdcall GetEnvironmentStringsA() kernel32.GetEnvironmentStringsA
|
||||
@ stdcall GetEnvironmentStringsW() kernel32.GetEnvironmentStringsW
|
||||
|
|
Loading…
Reference in New Issue