在线笔记
全部博文(596)
发布时间:2015-04-08 17:03:46
//// GDI calls the driver's DrvEnableDirectDraw function to obtain pointers to the DirectDraw callbacks that the driver supports. // 驱动支持DirectDraw的函数//// 填充三个回调接口// DD_CALLBACKS// DDHAL_CB32_CREATESURF.........【阅读全文】
发布时间:2015-04-08 17:02:37
//GDI calls the driver's DrvDisableDirectDraw function when the last DirectDraw application has finished running. //因为驱动需要分配的资源由DirectDraw管理,因此不需要释放资源VOID APIENTRY VBoxDispDrvDisableDirectDraw(DHPDEV dhpdev){ &nbs.........【阅读全文】
发布时间:2015-04-08 16:33:25
//// @1. 返回支持的DDI版本号// @2. 返回回调函数接口///* Display Driver entry point, * Returns DDI version number and callbacks supported by driver. */BOOL DrvEnableDriver(ULONG iEngineVersion, ULONG cj, PDRVEN.........【阅读全文】
发布时间:2015-04-08 16:01:55
//// VBoxDispDrvEnablePDEV 主要做了两件事// @1. 分配内存给PVBOXDISPDEV// @2. 填充gdiInfo, devInfo, 并赋值给pdevcaps, pdi// @2.1 显示模式// @2.2 鼠标支持模式// @2.3 画刷/////* First function which is .........【阅读全文】