mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
- 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:
parent
2b7e19ea24
commit
76df1b3538
1 changed files with 12 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue