xserver

xserver with xephyr scale patch
git clone https://git.neptards.moe/u3shit/xserver.git
Log | Files | Refs | README | LICENSE

vgaHWmodule.c (455B)


      1 /*
      2  * Copyright 1998 by The XFree86 Project, Inc
      3  */
      4 
      5 #ifdef HAVE_XORG_CONFIG_H
      6 #include <xorg-config.h>
      7 #endif
      8 
      9 #include "xf86Module.h"
     10 
     11 static XF86ModuleVersionInfo VersRec = {
     12     "vgahw",
     13     MODULEVENDORSTRING,
     14     MODINFOSTRING1,
     15     MODINFOSTRING2,
     16     XORG_VERSION_CURRENT,
     17     0, 1, 0,
     18     ABI_CLASS_VIDEODRV,
     19     ABI_VIDEODRV_VERSION,
     20     MOD_CLASS_NONE,
     21     {0, 0, 0, 0}
     22 };
     23 
     24 _X_EXPORT XF86ModuleData vgahwModuleData = { &VersRec, NULL, NULL };