diff --git a/reactos/drivers/video/videoprt/funclist.c b/reactos/drivers/video/videoprt/funclist.c index be52a6f7f58..72e47d83831 100644 --- a/reactos/drivers/video/videoprt/funclist.c +++ b/reactos/drivers/video/videoprt/funclist.c @@ -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