mirror of
https://github.com/X11Libre/xserver.git
synced 2026-09-26 21:12:25 +00:00
20 lines
425 B
C
20 lines
425 B
C
/* $XFree86: xc/programs/Xserver/Xext/xvmod.c,v 1.2 2001/03/05 04:51:55 mvojkovi Exp $ */
|
|
|
|
#include "X.h"
|
|
#include "misc.h"
|
|
#include "scrnintstr.h"
|
|
#include "gc.h"
|
|
#include "Xv.h"
|
|
#include "Xvproto.h"
|
|
#include "xvdix.h"
|
|
#include "xvmodproc.h"
|
|
|
|
void
|
|
XvRegister()
|
|
{
|
|
XvScreenInitProc = XvScreenInit;
|
|
XvGetScreenIndexProc = XvGetScreenIndex;
|
|
XvGetRTPortProc = XvGetRTPort;
|
|
XvMCScreenInitProc = XvMCScreenInit;
|
|
}
|
|
|