Commit d9a63101 authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

shcore: Add SubscribeFeatureStateChangeNotification stub.

parent 35d6f414
@ stub GetFeatureEnabledState
@ stub RecordFeatureError
@ stub RecordFeatureUsage
@ stub SubscribeFeatureStateChangeNotification
@ stdcall SubscribeFeatureStateChangeNotification(ptr ptr ptr) shcore.SubscribeFeatureStateChangeNotification
@ stub UnsubscribeFeatureStateChangeNotification
......@@ -27,6 +27,7 @@
#include "winuser.h"
#include "initguid.h"
#include "ocidl.h"
#include "featurestagingapi.h"
#include "shellscalingapi.h"
#include "shlwapi.h"
......@@ -2505,3 +2506,12 @@ BOOL WINAPI IsOS(DWORD feature)
return FALSE;
}
/*************************************************************************
* SubscribeFeatureStateChangeNotification [SHCORE.@]
*/
void WINAPI SubscribeFeatureStateChangeNotification(FEATURE_STATE_CHANGE_SUBSCRIPTION *subscription,
FEATURE_STATE_CHANGE_CALLBACK *callback, void *context)
{
FIXME("(%p, %p, %p) stub\n", subscription, callback, context);
}
......@@ -92,7 +92,7 @@
@ stdcall SetCurrentProcessExplicitAppUserModelID(wstr)
@ stdcall SetProcessDpiAwareness(long)
@ stdcall SetProcessReference(ptr)
# @ stub SubscribeFeatureStateChangeNotification
@ stdcall SubscribeFeatureStateChangeNotification(ptr ptr ptr)
@ stub UnregisterScaleChangeEvent
# @ stub UnsubscribeFeatureStateChangeNotification
......
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