xserver

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

sfbmodule.c (514B)


      1 #ifdef HAVE_XORG_CONFIG_H
      2 #include <xorg-config.h>
      3 #endif
      4 
      5 #include "xf86Module.h"
      6 
      7 static XF86ModuleVersionInfo VersRec = {
      8     "shadowfb",
      9     MODULEVENDORSTRING,
     10     MODINFOSTRING1,
     11     MODINFOSTRING2,
     12     XORG_VERSION_CURRENT,
     13     1, 0, 0,
     14     ABI_CLASS_ANSIC,            /* Only need the ansic layer */
     15     ABI_ANSIC_VERSION,
     16     MOD_CLASS_NONE,
     17     {0, 0, 0, 0}                /* signature, to be patched into the file by a tool */
     18 };
     19 
     20 _X_EXPORT XF86ModuleData shadowfbModuleData = { &VersRec, NULL, NULL };