Stub for affinity photo
From: James McDonnell topgamer7@gmail.com
--- dlls/cfgmgr32/cfgmgr32.spec | 1 + dlls/setupapi/setupapi.spec | 1 + dlls/setupapi/stubs.c | 8 ++++++++ 3 files changed, 10 insertions(+)
diff --git a/dlls/cfgmgr32/cfgmgr32.spec b/dlls/cfgmgr32/cfgmgr32.spec index 69ec784de68..92bb5b84c3e 100644 --- a/dlls/cfgmgr32/cfgmgr32.spec +++ b/dlls/cfgmgr32/cfgmgr32.spec @@ -152,6 +152,7 @@ @ stub CM_Register_Device_InterfaceW @ stub CM_Register_Device_Interface_ExA @ stub CM_Register_Device_Interface_ExW +@ stdcall CM_Register_Notification(ptr ptr ptr ptr) setupapi.CM_Register_Notification @ stub CM_Remove_SubTree @ stub CM_Remove_SubTree_Ex @ stub CM_Remove_Unmarked_Children diff --git a/dlls/setupapi/setupapi.spec b/dlls/setupapi/setupapi.spec index 7578fb25c9c..0bb936656f5 100644 --- a/dlls/setupapi/setupapi.spec +++ b/dlls/setupapi/setupapi.spec @@ -166,6 +166,7 @@ @ stub CM_Register_Device_InterfaceW @ stub CM_Register_Device_Interface_ExA @ stub CM_Register_Device_Interface_ExW +@ stdcall CM_Register_Notification(ptr ptr ptr ptr) @ stub CM_Remove_SubTree @ stub CM_Remove_SubTree_Ex @ stub CM_Remove_Unmarked_Children diff --git a/dlls/setupapi/stubs.c b/dlls/setupapi/stubs.c index 75185de047c..a69300eb891 100644 --- a/dlls/setupapi/stubs.c +++ b/dlls/setupapi/stubs.c @@ -675,3 +675,11 @@ BOOL WINAPI SetupDiGetClassRegistryPropertyW(const GUID *class, DWORD prop, DWOR SetLastError(ERROR_CALL_NOT_IMPLEMENTED); return FALSE; } + +CONFIGRET WINAPI CM_Register_Notification(VOID *pFilter, PVOID pContext, VOID *pCallback, + VOID *pNotifyContext) +{ + FIXME("pFilter %p, pContext %p, pCallback %p, pNotifyContext %p stub!\n", + pFilter, pContext, pCallback, pNotifyContext); + return CR_SUCCESS; +}
This merge request was closed by Alexandre Julliard.
Superseded by 73a1c134ad0c28c9e447d8cfeff46f1271a89283.