Commit cb05be7b authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

kernel32: Add GetEnabledXStateFeatures() stub.

parent d4cc71c5
@ stub CopyContext @ stub CopyContext
@ stub GetEnabledXStateFeatures @ stdcall -ret64 -arch=i386,x86_64 GetEnabledXStateFeatures() kernel32.GetEnabledXStateFeatures
@ stub GetXStateFeaturesMask @ stub GetXStateFeaturesMask
@ stub InitializeContext @ stub InitializeContext
@ stub LocateXStateFeature @ stub LocateXStateFeature
......
...@@ -327,3 +327,12 @@ DWORD WINAPI GetActiveProcessorCount(WORD group) ...@@ -327,3 +327,12 @@ DWORD WINAPI GetActiveProcessorCount(WORD group)
FIXME("semi-stub, returning %u\n", cpus); FIXME("semi-stub, returning %u\n", cpus);
return cpus; return cpus;
} }
/***********************************************************************
* GetEnabledXStateFeatures (KERNEL32.@)
*/
DWORD64 WINAPI GetEnabledXStateFeatures(void)
{
FIXME("\n");
return 0;
}
...@@ -657,7 +657,7 @@ ...@@ -657,7 +657,7 @@
# @ stub GetDurationFormat # @ stub GetDurationFormat
# @ stub GetDurationFormatEx # @ stub GetDurationFormatEx
@ stdcall GetDynamicTimeZoneInformation(ptr) @ stdcall GetDynamicTimeZoneInformation(ptr)
# @ stub GetEnabledXStateFeatures @ stdcall -ret64 -arch=i386,x86_64 GetEnabledXStateFeatures()
@ stdcall GetEnvironmentStrings() GetEnvironmentStringsA @ stdcall GetEnvironmentStrings() GetEnvironmentStringsA
@ stdcall GetEnvironmentStringsA() @ stdcall GetEnvironmentStringsA()
@ stdcall GetEnvironmentStringsW() @ stdcall GetEnvironmentStringsW()
......
...@@ -491,7 +491,7 @@ ...@@ -491,7 +491,7 @@
# @ stub GetEffectivePackageStatusForUser # @ stub GetEffectivePackageStatusForUser
# @ stub GetEightBitStringToUnicodeSizeRoutine # @ stub GetEightBitStringToUnicodeSizeRoutine
# @ stub GetEightBitStringToUnicodeStringRoutine # @ stub GetEightBitStringToUnicodeStringRoutine
# @ stub GetEnabledXStateFeatures @ stdcall -ret64 -arch=i386,x86_64 GetEnabledXStateFeatures() kernel32.GetEnabledXStateFeatures
@ stdcall GetEnvironmentStrings() kernel32.GetEnvironmentStrings @ stdcall GetEnvironmentStrings() kernel32.GetEnvironmentStrings
@ stdcall GetEnvironmentStringsA() kernel32.GetEnvironmentStringsA @ stdcall GetEnvironmentStringsA() kernel32.GetEnvironmentStringsA
@ stdcall GetEnvironmentStringsW() kernel32.GetEnvironmentStringsW @ stdcall GetEnvironmentStringsW() kernel32.GetEnvironmentStringsW
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment