twinapi.appcore: Add UnregisterAppConstrainedChangeNotification() stub.
This commit is contained in:
parent
c12e8f6123
commit
98b73b5c32
3 changed files with 10 additions and 1 deletions
|
@ -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.@)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -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)
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue