diff options
Diffstat (limited to 'xorg-server/hw/kdrive/ephyr/ephyrinit.c')
-rwxr-xr-x[-rw-r--r--] | xorg-server/hw/kdrive/ephyr/ephyrinit.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/xorg-server/hw/kdrive/ephyr/ephyrinit.c b/xorg-server/hw/kdrive/ephyr/ephyrinit.c index 897aa1955..65b1a47fc 100644..100755 --- a/xorg-server/hw/kdrive/ephyr/ephyrinit.c +++ b/xorg-server/hw/kdrive/ephyr/ephyrinit.c @@ -59,6 +59,7 @@ InitCard(char *name) KdCardInfoAdd(&ephyrFuncs, 0); } +#ifndef _MSC_VER static const ExtensionModule ephyrExtensions[] = { #ifdef GLXEXT { GlxExtensionInit, "GLX", &noGlxExtension }, @@ -157,6 +158,7 @@ ddxUseMsg(void) ErrorF("-no-host-grab Disable grabbing the keyboard and mouse.\n"); ErrorF("\n"); } +#endif void processScreenOrOutputArg(const char *screen_size, const char *output, char *parent_id) @@ -202,6 +204,7 @@ processOutputArg(const char *output, char *parent_id) processScreenOrOutputArg("100x100+0+0", output, parent_id); } +#ifndef _MSC_VER int ddxProcessArgument(int argc, char **argv, int i) { @@ -381,6 +384,15 @@ OsVendorInit(void) KdOsInit(&EphyrOsFuncs); } +#ifdef DDXOSFATALERROR +void +OsVendorFatalError(void) +{ +} +#endif + +#endif + KdCardFuncs ephyrFuncs = { ephyrCardInit, /* cardinit */ ephyrScreenInitialize, /* scrinit */ |