xserver

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

platform_noop.c (383B)


      1 
      2 #ifdef HAVE_XORG_CONFIG_H
      3 #include <xorg-config.h>
      4 #endif
      5 
      6 #ifdef XSERVER_PLATFORM_BUS
      7 /* noop platform device support */
      8 #include "xf86_OSproc.h"
      9 
     10 #include "xf86.h"
     11 #include "xf86platformBus.h"
     12 
     13 Bool
     14 xf86PlatformDeviceCheckBusID(struct xf86_platform_device *device, const char *busid)
     15 {
     16     return FALSE;
     17 }
     18 
     19 void xf86PlatformDeviceProbe(struct OdevAttributes *attribs)
     20 {
     21 
     22 }
     23 #endif