From 44672dfdcd10ffe68374f7f486f749ec6a7c83d0 Mon Sep 17 00:00:00 2001 From: Ricardo Filipe Date: Fri, 2 Jan 2009 17:18:40 +0000 Subject: setupapi: fix stub SetupPromptForDiskA/W --- dlls/setupapi/stubs.c | 10 ++++++---- 1 files changed, 6 insertions(+), 4 deletions(-) diff --git a/dlls/setupapi/stubs.c b/dlls/setupapi/stubs.c index 89b02eb..4740df7 100644 --- a/dlls/setupapi/stubs.c +++ b/dlls/setupapi/stubs.c @@ -244,11 +244,12 @@ UINT WINAPI SetupPromptForDiskA(HWND hwndParent, PCSTR DialogTitle, PCSTR DiskNa PCSTR PathToSource, PCSTR FileSought, PCSTR TagFile, DWORD DiskPromptStyle, PSTR PathBuffer, DWORD PathBufferSize, PDWORD PathRequiredSize) { - FIXME("%p %s %s %s %s %s %d %p %d %p: stub\n", hwndParent, debugstr_a(DialogTitle), + FIXME("%p %s %s %s %s %s 0x%08x %p %d %p: stub\n", hwndParent, debugstr_a(DialogTitle), debugstr_a(DiskName), debugstr_a(PathToSource), debugstr_a(FileSought), debugstr_a(TagFile), DiskPromptStyle, PathBuffer, PathBufferSize, PathRequiredSize); - return 0; + + return ERROR_CALL_NOT_IMPLEMENTED; } /*********************************************************************** @@ -258,11 +259,12 @@ UINT WINAPI SetupPromptForDiskW(HWND hwndParent, PCWSTR DialogTitle, PCWSTR Disk PCWSTR PathToSource, PCWSTR FileSought, PCWSTR TagFile, DWORD DiskPromptStyle, PWSTR PathBuffer, DWORD PathBufferSize, PDWORD PathRequiredSize) { - FIXME("%p %s %s %s %s %s %d %p %d %p: stub\n", hwndParent, debugstr_w(DialogTitle), + FIXME("%p %s %s %s %s %s 0x%08x %p %d %p: stub\n", hwndParent, debugstr_w(DialogTitle), debugstr_w(DiskName), debugstr_w(PathToSource), debugstr_w(FileSought), debugstr_w(TagFile), DiskPromptStyle, PathBuffer, PathBufferSize, PathRequiredSize); - return 0; + + return ERROR_CALL_NOT_IMPLEMENTED; } /*********************************************************************** -- 1.5.6.3