twinapi.appcore: Add UnregisterAppConstrainedChangeNotification() stub.

This commit is contained in:
Mohamad Al-Jaf 2023-05-18 20:03:48 -04:00 committed by Alexandre Julliard
parent c12e8f6123
commit 98b73b5c32
3 changed files with 10 additions and 1 deletions

View file

@ -39,6 +39,14 @@ ULONG WINAPI RegisterAppStateChangeNotification( PAPPSTATE_CHANGE_ROUTINE routin
return ERROR_CALL_NOT_IMPLEMENTED; return ERROR_CALL_NOT_IMPLEMENTED;
} }
/***********************************************************************
* UnregisterAppConstrainedChangeNotification (twinapi.appcore.@)
*/
void WINAPI UnregisterAppConstrainedChangeNotification( PAPPCONSTRAIN_REGISTRATION reg )
{
FIXME( "reg %p - stub.\n", reg );
}
/*********************************************************************** /***********************************************************************
* UnregisterAppStateChangeNotification (twinapi.appcore.@) * UnregisterAppStateChangeNotification (twinapi.appcore.@)
*/ */

View file

@ -123,5 +123,5 @@
@ stub PsmWaitForAppResume @ stub PsmWaitForAppResume
@ stdcall RegisterAppConstrainedChangeNotification(ptr ptr ptr) @ stdcall RegisterAppConstrainedChangeNotification(ptr ptr ptr)
@ stdcall RegisterAppStateChangeNotification(ptr ptr ptr) @ stdcall RegisterAppStateChangeNotification(ptr ptr ptr)
@ stub UnregisterAppConstrainedChangeNotification @ stdcall UnregisterAppConstrainedChangeNotification(ptr)
@ stdcall UnregisterAppStateChangeNotification(ptr) @ stdcall UnregisterAppStateChangeNotification(ptr)

View file

@ -43,6 +43,7 @@ typedef struct _APPCONSTRAIN_REGISTRATION *PAPPCONSTRAIN_REGISTRATION;
APICONTRACT ULONG NTAPI RegisterAppConstrainedChangeNotification(PAPPCONSTRAIN_CHANGE_ROUTINE,void *,PAPPCONSTRAIN_REGISTRATION *); APICONTRACT ULONG NTAPI RegisterAppConstrainedChangeNotification(PAPPCONSTRAIN_CHANGE_ROUTINE,void *,PAPPCONSTRAIN_REGISTRATION *);
APICONTRACT ULONG NTAPI RegisterAppStateChangeNotification(PAPPSTATE_CHANGE_ROUTINE,void *,PAPPSTATE_REGISTRATION *); APICONTRACT ULONG NTAPI RegisterAppStateChangeNotification(PAPPSTATE_CHANGE_ROUTINE,void *,PAPPSTATE_REGISTRATION *);
APICONTRACT void NTAPI UnregisterAppConstrainedChangeNotification(PAPPCONSTRAIN_REGISTRATION);
APICONTRACT void NTAPI UnregisterAppStateChangeNotification(PAPPSTATE_REGISTRATION); APICONTRACT void NTAPI UnregisterAppStateChangeNotification(PAPPSTATE_REGISTRATION);
#ifdef __cplusplus #ifdef __cplusplus