- Add more functions to the lookup table (used by the newest VMWare 6.5 Video driver).

svn path=/trunk/; revision=33708
This commit is contained in:
Aleksey Bragin 2008-05-26 11:47:47 +00:00
parent 2b7e19ea24
commit 76df1b3538

View file

@ -30,12 +30,22 @@ typedef struct _VIDEO_PORT_FUNCTION_TABLE {
/* 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