From 57c536ff546e241a310317db0a3f61e4ee05d9f0 Mon Sep 17 00:00:00 2001 From: Louis Lenders Date: Fri, 23 Oct 2009 10:24:00 +0200 Subject: dwmapi: add stub for DwmDefWindowProc --- dlls/dwmapi/dwmapi.spec | 2 +- dlls/dwmapi/dwmapi_main.c | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletions(-) diff --git a/dlls/dwmapi/dwmapi.spec b/dlls/dwmapi/dwmapi.spec index 7c613d0..8a39888 100644 --- a/dlls/dwmapi/dwmapi.spec +++ b/dlls/dwmapi/dwmapi.spec @@ -21,7 +21,7 @@ 120 stub @ @ stub DwmAttachMilContent -@ stub DwmDefWindowProc +@ stdcall DwmDefWindowProc(long long long long long) @ stub DwmDetachMilContent @ stub DwmEnableBlurBehindWindow @ stdcall DwmEnableMMCSS(long) diff --git a/dlls/dwmapi/dwmapi_main.c b/dlls/dwmapi/dwmapi_main.c index 6042028..e60e808 100644 --- a/dlls/dwmapi/dwmapi_main.c +++ b/dlls/dwmapi/dwmapi_main.c @@ -159,3 +159,13 @@ HRESULT WINAPI DwmGetGraphicsStreamTransformHint(UINT uIndex, MilMatrix3x2D *pTr return E_NOTIMPL; } + +/********************************************************************** + * DwmDefWindowProc (DWMAPI.@) + */ +BOOL DwmDefWindowProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam, LRESULT *plResult) +{ + FIXME("(%p, %x, %lx,%lx, %lx) stub\n", hwnd, msg, wParam, lParam, *plResult); + + return FALSE; +} -- 1.6.0.4