From e661bfdc121d36f590f0e2272f5f5cc800c9bec2 Mon Sep 17 00:00:00 2001 From: Magnus Olsen Date: Sun, 19 Jun 2005 12:13:57 +0000 Subject: [PATCH] Correct the DD_GETDRIVERINFODATA struct it did missing a pointer to DDRAWI_DIRECTDRAW_GBL struct. Some need really check this file if more mistake exists svn path=/trunk/; revision=16089 --- reactos/include/ddk/ddrawint.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/reactos/include/ddk/ddrawint.h b/reactos/include/ddk/ddrawint.h index 246765708cd..f6307629277 100644 --- a/reactos/include/ddk/ddrawint.h +++ b/reactos/include/ddk/ddrawint.h @@ -1129,9 +1129,13 @@ typedef struct // Output: DWORD dwActualSize; HRESULT ddRVal; + ULONG_PTR dwContext; } DD_GETDRIVERINFODATA, *PDD_GETDRIVERINFODATA; typedef DWORD (STDCALL *PDD_GETDRIVERINFO)(PDD_GETDRIVERINFODATA); + + + /************************************************************************/ /* Driver info structures */ /************************************************************************/ @@ -1203,6 +1207,7 @@ typedef struct PDD_D3DBUFCALLBACKS lpD3DBufCallbacks; } DD_HALINFO, *PDD_HALINFO; + DEFINE_GUID(GUID_NonLocalVidMemCaps, 0x86C4FA80, 0x8D84, 0x11D0, 0x94, 0xE8, 0x00, 0xC0, 0x4F, 0xC3, 0x41, 0x37); typedef struct @@ -1228,6 +1233,8 @@ typedef struct } ddsExtendedHeapRestrictions[1]; } DD_MORESURFACECAPS, *PDD_MORESURFACECAPS; + + #ifdef __cplusplus } /* extern "C" */ #endif