Author: fireball Date: Mon May 26 06:47:47 2008 New Revision: 33708
URL: http://svn.reactos.org/svn/reactos?rev=33708&view=rev Log: - Add more functions to the lookup table (used by the newest VMWare 6.5 Video driver).
Modified: trunk/reactos/drivers/video/videoprt/funclist.c
Modified: trunk/reactos/drivers/video/videoprt/funclist.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/video/videoprt/func... ============================================================================== --- trunk/reactos/drivers/video/videoprt/funclist.c [iso-8859-1] (original) +++ trunk/reactos/drivers/video/videoprt/funclist.c [iso-8859-1] Mon May 26 06:47:47 2008 @@ -30,12 +30,22 @@
/* GLOBAL VARIABLES ***********************************************************/
-#define VP_EXPORTED_FUNCS 1 +#define VP_EXPORTED_FUNCS 6
+UCHAR FN_VideoPortClearEvent[] = "VideoPortClearEvent"; +UCHAR FN_VideoPortCreateEvent[] = "VideoPortCreateEvent"; UCHAR FN_VideoPortCreateSecondaryDisplay[] = "VideoPortCreateSecondaryDisplay"; +UCHAR FN_VideoPortDeleteEvent[] = "VideoPortDeleteEvent"; +UCHAR FN_VideoPortQueueDpc[] = "VideoPortQueueDpc"; +UCHAR FN_VideoPortSetEvent[] = "VideoPortSetEvent";
VIDEO_PORT_FUNCTION_TABLE VideoPortExports[] = { - {VideoPortCreateSecondaryDisplay, FN_VideoPortCreateSecondaryDisplay} + {VideoPortClearEvent, FN_VideoPortClearEvent}, + {VideoPortCreateEvent, FN_VideoPortCreateEvent}, + {VideoPortCreateSecondaryDisplay, FN_VideoPortCreateSecondaryDisplay}, + {VideoPortDeleteEvent, FN_VideoPortDeleteEvent}, + {VideoPortQueueDpc, FN_VideoPortQueueDpc}, + {VideoPortSetEvent, FN_VideoPortSetEvent} };
PVOID NTAPI