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 36935318a..c7358b52e 100644..100755 --- a/xorg-server/hw/kdrive/ephyr/ephyrinit.c +++ b/xorg-server/hw/kdrive/ephyr/ephyrinit.c @@ -58,6 +58,7 @@ InitCard(char *name) KdCardInfoAdd(&ephyrFuncs, 0); } +#ifndef _MSC_VER static const ExtensionModule ephyrExtensions[] = { #ifdef GLXEXT { GlxExtensionInit, "GLX", &noGlxExtension }, @@ -155,6 +156,7 @@ ddxUseMsg(void) ("-title [title] set the window title in the WM_NAME property\n"); ErrorF("\n"); } +#endif void processScreenOrOutputArg(const char *screen_size, const char *output, char *parent_id) @@ -200,6 +202,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) { @@ -375,6 +378,15 @@ OsVendorInit(void) KdOsInit(&EphyrOsFuncs); } +#ifdef DDXOSFATALERROR +void +OsVendorFatalError(void) +{ +} +#endif + +#endif + KdCardFuncs ephyrFuncs = { ephyrCardInit, /* cardinit */ ephyrScreenInitialize, /* scrinit */ |