dwmapi: Add stub for DwmDefWindowProc.

This commit is contained in:
André Hentschel 2010-08-09 18:50:12 +02:00 committed by Alexandre Julliard
parent 1583057fc8
commit a0e7587419
3 changed files with 14 additions and 1 deletions

View File

@ -21,7 +21,7 @@
120 stub @
@ stub DwmAttachMilContent
@ stub DwmDefWindowProc
@ stdcall DwmDefWindowProc(long long long long ptr)
@ stub DwmDetachMilContent
@ stdcall DwmEnableBlurBehindWindow(ptr ptr)
@ stdcall DwmEnableMMCSS(long)

View File

@ -176,3 +176,15 @@ HRESULT WINAPI DwmEnableBlurBehindWindow(HWND hWnd, const DWM_BLURBEHIND *pBlurB
return E_NOTIMPL;
}
/**********************************************************************
* DwmDefWindowProc (DWMAPI.@)
*/
BOOL WINAPI DwmDefWindowProc(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam, LRESULT *plResult)
{
static int i;
if (!i++) FIXME("stub\n");
return FALSE;
}

View File

@ -53,6 +53,7 @@ typedef struct _DWM_BLURBEHIND
BOOL fTransitionOnMaximized;
} DWM_BLURBEHIND, *PDWM_BLURBEHIND;
DWMAPI DwmDefWindowProc(HWND, UINT, WPARAM, LPARAM, LRESULT*);
DWMAPI DwmEnableBlurBehindWindow(HWND, const DWM_BLURBEHIND *);
DWMAPI DwmEnableComposition(UINT);
DWMAPI DwmEnableMMCSS(BOOL);