user32: Return a fake handle from RegisterPowerSettingNotification.

This commit is contained in:
Hans Leidekker 2015-07-17 12:37:01 +02:00 committed by Alexandre Julliard
parent 4ad09a150e
commit 80cee36b6a
1 changed files with 1 additions and 1 deletions

View File

@ -717,7 +717,7 @@ BOOL WINAPI UserHandleGrantAccess(HANDLE handle, HANDLE job, BOOL grant)
HPOWERNOTIFY WINAPI RegisterPowerSettingNotification(HANDLE recipient, const GUID *guid, DWORD flags)
{
FIXME("(%p,%s,%x): stub\n", recipient, debugstr_guid(guid), flags);
return NULL;
return (HPOWERNOTIFY)0xdeadbeef;
}
/**********************************************************************