From b32dcd1aec222be649c900cb7ddeab9406fd55a2 Mon Sep 17 00:00:00 2001 From: Ricardo Filipe Date: Thu, 11 Dec 2008 09:05:02 +0000 Subject: setupapi: add stub for CM_Get_Child --- dlls/setupapi/setupapi.spec | 2 +- dlls/setupapi/stubs.c | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletions(-) diff --git a/dlls/setupapi/setupapi.spec b/dlls/setupapi/setupapi.spec index 6b52c29..9d5796b 100644 --- a/dlls/setupapi/setupapi.spec +++ b/dlls/setupapi/setupapi.spec @@ -53,7 +53,7 @@ @ stub CM_Free_Res_Des @ stub CM_Free_Res_Des_Ex @ stub CM_Free_Res_Des_Handle -@ stub CM_Get_Child +@ stdcall CM_Get_Child(ptr long long) @ stub CM_Get_Child_Ex @ stub CM_Get_Class_Key_NameA @ stub CM_Get_Class_Key_NameW diff --git a/dlls/setupapi/stubs.c b/dlls/setupapi/stubs.c index 5a75b5d..a636d1c 100644 --- a/dlls/setupapi/stubs.c +++ b/dlls/setupapi/stubs.c @@ -248,3 +248,14 @@ CONFIGRET WINAPI CM_Locate_DevNodeW(PDEVINST pdnDevInst, DEVINSTID_W pDeviceID, return CR_SUCCESS; } + + +/*********************************************************************** + * CM_Get_Child (SETUPAPI.@) + */ +CONFIGRET WINAPI CM_Get_Child(PDEVINST pdnDevInst, DEVINST dnDevInst, ULONG ulFlags) +{ + FIXME("%d %d %d: stub\n", *pdnDevInst, dnDevInst, ulFlags); + + return CR_SUCCESS; +} -- 1.5.6.3