From fc6d9404246d9fa315cc88acf1347f77a59f048f Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Sat, 26 Feb 2000 19:11:25 +0000 Subject: [PATCH] ErrorInfo functions need to be in ole32, not oleaut32. --- dlls/ole32/Makefile.in | 1 + dlls/{oleaut32 => ole32}/errorinfo.c | 2 +- dlls/oleaut32/Makefile.in | 1 - 3 files changed, 2 insertions(+), 2 deletions(-) rename dlls/{oleaut32 => ole32}/errorinfo.c (95%) diff --git a/dlls/ole32/Makefile.in b/dlls/ole32/Makefile.in index 21c5e3f5f8c..833f28123a7 100644 --- a/dlls/ole32/Makefile.in +++ b/dlls/ole32/Makefile.in @@ -17,6 +17,7 @@ C_SRCS = \ compositemoniker.c \ datacache.c \ defaulthandler.c \ + errorinfo.c \ filemoniker.c \ hglobalstream.c \ ifs.c \ diff --git a/dlls/oleaut32/errorinfo.c b/dlls/ole32/errorinfo.c similarity index 95% rename from dlls/oleaut32/errorinfo.c rename to dlls/ole32/errorinfo.c index 9297c7bd2d7..e5733ab721e 100644 --- a/dlls/oleaut32/errorinfo.c +++ b/dlls/ole32/errorinfo.c @@ -17,7 +17,7 @@ DEFAULT_DEBUG_CHANNEL(ole) */ HRESULT WINAPI CreateErrorInfo(ICreateErrorInfo **pperrinfo) { - FIXME("(%ld, %p): stub:\n", pperrinfo); + FIXME("(%p): stub:\n", pperrinfo); return S_OK; } diff --git a/dlls/oleaut32/Makefile.in b/dlls/oleaut32/Makefile.in index 3b18f042d1d..9cf29a4e2cd 100644 --- a/dlls/oleaut32/Makefile.in +++ b/dlls/oleaut32/Makefile.in @@ -11,7 +11,6 @@ IMPORTS = olepro32 ole32 comctl32 winmm SPEC_SRCS = oleaut32.spec ole2disp.spec typelib.spec C_SRCS = \ - errorinfo.c \ ole2disp.c \ oleaut.c \ olefont.c \