Commit 96aa7bcd authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

dwmapi: Enable compilation with long types.

parent 37b972c7
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = dwmapi.dll MODULE = dwmapi.dll
IMPORTLIB = dwmapi IMPORTLIB = dwmapi
......
...@@ -115,7 +115,7 @@ HRESULT WINAPI DwmSetWindowAttribute(HWND hwnd, DWORD attributenum, LPCVOID attr ...@@ -115,7 +115,7 @@ HRESULT WINAPI DwmSetWindowAttribute(HWND hwnd, DWORD attributenum, LPCVOID attr
{ {
static BOOL once; static BOOL once;
if (!once++) FIXME("(%p, %x, %p, %x) stub\n", hwnd, attributenum, attribute, size); if (!once++) FIXME("(%p, %lx, %p, %lx) stub\n", hwnd, attributenum, attribute, size);
return S_OK; return S_OK;
} }
...@@ -197,7 +197,7 @@ BOOL WINAPI DwmDefWindowProc(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam, ...@@ -197,7 +197,7 @@ BOOL WINAPI DwmDefWindowProc(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam,
*/ */
HRESULT WINAPI DwmGetWindowAttribute(HWND hwnd, DWORD attribute, PVOID pv_attribute, DWORD size) HRESULT WINAPI DwmGetWindowAttribute(HWND hwnd, DWORD attribute, PVOID pv_attribute, DWORD size)
{ {
FIXME("(%p %d %p %d) stub\n", hwnd, attribute, pv_attribute, size); FIXME("(%p %ld %p %ld) stub\n", hwnd, attribute, pv_attribute, size);
return E_NOTIMPL; return E_NOTIMPL;
} }
...@@ -265,7 +265,7 @@ HRESULT WINAPI DwmSetPresentParameters(HWND hwnd, DWM_PRESENT_PARAMETERS *params ...@@ -265,7 +265,7 @@ HRESULT WINAPI DwmSetPresentParameters(HWND hwnd, DWM_PRESENT_PARAMETERS *params
*/ */
HRESULT WINAPI DwmSetIconicLivePreviewBitmap(HWND hwnd, HBITMAP hbmp, POINT *pos, DWORD flags) HRESULT WINAPI DwmSetIconicLivePreviewBitmap(HWND hwnd, HBITMAP hbmp, POINT *pos, DWORD flags)
{ {
FIXME("(%p %p %p %x) stub\n", hwnd, hbmp, pos, flags); FIXME("(%p %p %p %lx) stub\n", hwnd, hbmp, pos, flags);
return S_OK; return S_OK;
}; };
...@@ -274,7 +274,7 @@ HRESULT WINAPI DwmSetIconicLivePreviewBitmap(HWND hwnd, HBITMAP hbmp, POINT *pos ...@@ -274,7 +274,7 @@ HRESULT WINAPI DwmSetIconicLivePreviewBitmap(HWND hwnd, HBITMAP hbmp, POINT *pos
*/ */
HRESULT WINAPI DwmSetIconicThumbnail(HWND hwnd, HBITMAP hbmp, DWORD flags) HRESULT WINAPI DwmSetIconicThumbnail(HWND hwnd, HBITMAP hbmp, DWORD flags)
{ {
FIXME("(%p %p %x) stub\n", hwnd, hbmp, flags); FIXME("(%p %p %lx) stub\n", hwnd, hbmp, flags);
return S_OK; return S_OK;
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment