From 836456a97d6b17785fe83a8562ff39f4c1346774 Mon Sep 17 00:00:00 2001 From: Jason Filby Date: Fri, 10 Mar 2000 12:39:53 +0000 Subject: [PATCH] Small fix svn path=/trunk/; revision=1043 --- reactos/subsys/win32k/misc/driver.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/reactos/subsys/win32k/misc/driver.c b/reactos/subsys/win32k/misc/driver.c index 36f95fe5965..3fc495c79e2 100644 --- a/reactos/subsys/win32k/misc/driver.c +++ b/reactos/subsys/win32k/misc/driver.c @@ -1,4 +1,4 @@ -/* $Id: driver.c,v 1.9 2000/03/09 21:04:10 jfilby Exp $ +/* $Id: driver.c,v 1.10 2000/03/10 12:39:53 jfilby Exp $ * * GDI Driver support routines * (mostly swiped from Wine) @@ -95,6 +95,8 @@ BOOL DRIVER_BuildDDIFunctions(PDRVENABLEDATA DED, if(DED->pdrvfn[i].iFunc == INDEX_DrvEnablePDEV) DF->EnablePDev = (PGD_ENABLEPDEV)DED->pdrvfn[i].pfn; if(DED->pdrvfn[i].iFunc == INDEX_DrvCompletePDEV) DF->CompletePDev = (PGD_COMPLETEPDEV)DED->pdrvfn[i].pfn; if(DED->pdrvfn[i].iFunc == INDEX_DrvDisablePDEV) DF->DisablePDev = (PGD_DISABLEPDEV)DED->pdrvfn[i].pfn; + if(DED->pdrvfn[i].iFunc == INDEX_DrvEnableSurface) DF->EnableSurface = (PGD_ENABLESURFACE)DED->pdrvfn[i].pfn; + if(DED->pdrvfn[i].iFunc == INDEX_DrvDisableSurface) DF->DisableSurface = (PGD_DISABLESURFACE)DED->pdrvfn[i].pfn; if(DED->pdrvfn[i].iFunc == INDEX_DrvAssertMode) DF->AssertMode = (PGD_ASSERTMODE)DED->pdrvfn[i].pfn; if(DED->pdrvfn[i].iFunc == INDEX_DrvResetPDEV) DF->ResetPDev = (PGD_RESETPDEV)DED->pdrvfn[i].pfn; if(DED->pdrvfn[i].iFunc == INDEX_DrvCreateDeviceBitmap)