From e5f58a8b91c01157a9b0a9110e5f951600f2980e Mon Sep 17 00:00:00 2001 From: James Tabor Date: Fri, 21 Sep 2007 00:05:17 +0000 Subject: [PATCH] - Add CMP_RegisterNotification and CMP_UnregisterNotification. Both called from User32. svn path=/trunk/; revision=29126 --- reactos/include/ddk/cfgmgr32.h | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/reactos/include/ddk/cfgmgr32.h b/reactos/include/ddk/cfgmgr32.h index b55563f2825..69bfea38275 100644 --- a/reactos/include/ddk/cfgmgr32.h +++ b/reactos/include/ddk/cfgmgr32.h @@ -605,7 +605,14 @@ WINAPI CMP_Init_Detection( IN DWORD dwMagic); -/* FIXME: Missing CMP_RegisterNotification */ +CMAPI +CONFIGRET +WINAPI +CMP_RegisterNotification( + IN HANDLE hRecipient, + IN LPVOID lpvNotificationFilter, + IN DWORD dwFlags, + OUT PULONG pluhDevNotify); CMAPI CONFIGRET @@ -614,7 +621,11 @@ CMP_Report_LogOn( IN DWORD dwMagic, IN DWORD dwProcessId); -/* FIXME: Missing CMP_UnregisterNotification */ +CMAPI +CONFIGRET +WINAPI +CMP_UnregisterNotification(ULONG luhDevNotify); + /* FIXME: Missing CMP_WaitNoPendingInstallEvents */ /* FIXME: Missing CMP_WaitServicesAvailable */