1
0
mirror of https://github.com/wine-mirror/wine synced 2024-06-29 06:14:34 +00:00

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;
}
/***********************************************************************
* UnregisterAppConstrainedChangeNotification (twinapi.appcore.@)
*/
void WINAPI UnregisterAppConstrainedChangeNotification( PAPPCONSTRAIN_REGISTRATION reg )
{
FIXME( "reg %p - stub.\n", reg );
}
/***********************************************************************
* UnregisterAppStateChangeNotification (twinapi.appcore.@)
*/

View File

@ -123,5 +123,5 @@
@ stub PsmWaitForAppResume
@ stdcall RegisterAppConstrainedChangeNotification(ptr ptr ptr)
@ stdcall RegisterAppStateChangeNotification(ptr ptr ptr)
@ stub UnregisterAppConstrainedChangeNotification
@ stdcall UnregisterAppConstrainedChangeNotification(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 RegisterAppStateChangeNotification(PAPPSTATE_CHANGE_ROUTINE,void *,PAPPSTATE_REGISTRATION *);
APICONTRACT void NTAPI UnregisterAppConstrainedChangeNotification(PAPPCONSTRAIN_REGISTRATION);
APICONTRACT void NTAPI UnregisterAppStateChangeNotification(PAPPSTATE_REGISTRATION);
#ifdef __cplusplus