Author: greatlrd Date: Mon Oct 15 23:43:58 2007 New Revision: 29609
URL: http://svn.reactos.org/svn/reactos?rev=29609&view=rev Log: 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);
Modified: branches/reactx/reactos/include/psdk/ntgdi.h
Modified: branches/reactx/reactos/include/psdk/ntgdi.h URL: http://svn.reactos.org/svn/reactos/branches/reactx/reactos/include/psdk/ntgd... ============================================================================== --- branches/reactx/reactos/include/psdk/ntgdi.h (original) +++ branches/reactx/reactos/include/psdk/ntgdi.h Mon Oct 15 23:43:58 2007 @@ -698,7 +698,7 @@ );
W32KAPI -VOID +DWORD APIENTRY NtGdiDdUnattachSurface( IN HANDLE hSurface,