From 0c91d34b412d0f9157673685014c55611869c608 Mon Sep 17 00:00:00 2001 From: Magnus Olsen Date: Mon, 15 Oct 2007 19:43:58 +0000 Subject: [PATCH] wrong protype in MSDN, the protypes is VOID APIENTRY NtGdiDdUnattachSurface(HANDLE hSurface, HANDLE hSurfaceAttached); and the text in msdn talk it can return either DDHAL_DRIVER_HANDLED or DDHAL_DRIVER_NOTHANDLED, see http://msdn2.microsoft.com/en-us/library/ms648703.aspx, so I change the protype to DWORD APIENTRY NtGdiDdUnattachSurface(HANDLE hSurface, HANDLE hSurfaceAttached); svn path=/branches/reactx/; revision=29609 --- reactos/include/psdk/ntgdi.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/include/psdk/ntgdi.h b/reactos/include/psdk/ntgdi.h index 0692017e5e2..1bc5d42f524 100644 --- a/reactos/include/psdk/ntgdi.h +++ b/reactos/include/psdk/ntgdi.h @@ -698,7 +698,7 @@ NtGdiDdSetOverlayPosition( ); W32KAPI -VOID +DWORD APIENTRY NtGdiDdUnattachSurface( IN HANDLE hSurface,