Commit 67d0509f authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

shcore: Add GetFeatureEnabledState stub.

Also for Windows PC Health Check. Signed-off-by: 's avatarAlex Henrie <alexhenrie24@gmail.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent d9a63101
@ stub GetFeatureEnabledState
@ stdcall GetFeatureEnabledState(long long) shcore.GetFeatureEnabledState
@ stub RecordFeatureError
@ stub RecordFeatureUsage
@ stdcall SubscribeFeatureStateChangeNotification(ptr ptr ptr) shcore.SubscribeFeatureStateChangeNotification
......
......@@ -2515,3 +2515,12 @@ void WINAPI SubscribeFeatureStateChangeNotification(FEATURE_STATE_CHANGE_SUBSCRI
{
FIXME("(%p, %p, %p) stub\n", subscription, callback, context);
}
/*************************************************************************
* GetFeatureEnabledState [SHCORE.@]
*/
FEATURE_ENABLED_STATE WINAPI GetFeatureEnabledState(UINT32 feature, FEATURE_CHANGE_TIME change_time)
{
FIXME("(%u, %u) stub\n", feature, change_time);
return FEATURE_ENABLED_STATE_DEFAULT;
}
......@@ -9,7 +9,7 @@
@ stdcall GetCurrentProcessExplicitAppUserModelID(ptr)
@ stdcall GetDpiForMonitor(long long ptr ptr)
@ stub GetDpiForShellUIComponent
# @ stub GetFeatureEnabledState
@ stdcall GetFeatureEnabledState(long long)
# @ stub GetFeatureVariant
@ stdcall GetProcessDpiAwareness(long ptr)
@ stdcall GetProcessReference(ptr)
......
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