twinapi.appcore: Add UnregisterAppStateChangeNotification stub.

This commit is contained in:
Mohamad Al-Jaf 2023-04-18 20:27:10 -04:00 committed by Alexandre Julliard
parent 5ff1242c94
commit 1a4be35948
2 changed files with 9 additions and 1 deletions

View file

@ -29,3 +29,11 @@ ULONG WINAPI RegisterAppStateChangeNotification( PAPPSTATE_CHANGE_ROUTINE routin
FIXME( "routine %p, context %p, reg %p - stub.\n", routine, context, reg );
return ERROR_CALL_NOT_IMPLEMENTED;
}
/***********************************************************************
* UnregisterAppStateChangeNotification (twinapi.appcore.@)
*/
void WINAPI UnregisterAppStateChangeNotification( PAPPSTATE_REGISTRATION reg )
{
FIXME( "reg %p - stub.\n", reg );
}

View file

@ -124,4 +124,4 @@
@ stub RegisterAppConstrainedChangeNotification
@ stdcall RegisterAppStateChangeNotification(ptr ptr ptr)
@ stub UnregisterAppConstrainedChangeNotification
@ stub UnregisterAppStateChangeNotification
@ stdcall UnregisterAppStateChangeNotification(ptr)