views:

211

answers:

1

Hello,

I am working on a project where I need to change the behaviour of the XOpenDisplay function defined in X11/Xlib.h.

I have found an example, which should do exactly what I am looking for, but when I compile it, I get the following error messages:

XOpenDisplay_interpose.c:14: Error: conflicting types for »XOpenDisplay« /usr/include/X11/Xlib.h:1507: Error: previous declaration of »XOpenDisplay« was here

Can anyone help me with that problem? What am I missing?

My program code so far - based on the example mentioned above:

#include <stdio.h>
#include <X11/Xlib.h>
#include <dlfcn.h>

Display *XOpenDisplay(char *display_name)
{
  static Display *(*func)(char *);
  Display *ret;
  void* handle=NULL;
  handle = dlopen ("XOpenDisplay_interpose.so", RTLD_LAZY);

  if(!handle){
      fprintf(stderr, "ERROR dlopen\n");
  }

  if(!func)
    func = (Display *(*)(char *))dlsym(handle,"XOpenDisplay");

  if(display_name)
    printf("XOpenDisplay() is called with display_name=%s\n", display_name);
  else
    printf("XOpenDisplay() is called with display_name=NULL\n");

  ret = func(display_name);
  printf("  calling XOpenDisplay(NULL)\n");
  ret = func(0);
  printf("XOpenDisplay() returned %p\n", ret);

  return(ret);
}

int XCloseDisplay(Display *display_name)
{ 
  static int (*func)(Display *); 
  int ret; 
  void* handle=NULL;
  handle = dlopen ("XOpenDisplay_interpose.so", RTLD_LAZY);
  if(!handle){
   fprintf(stderr, "ERROR dlopen\n");
  }

  if(!func)
    func = (int (*)(Display *))dlsym(handle,"XCloseDisplay"); 

  ret = (int)func(display_name); 

  printf("called XCloseDisplay(%p)\n", display_name); 

  return(ret); 
}

int main()
{
}

Regards, Andy.

A: 

The declaration reads like this:

Display *XOpenDisplay(_Xconst char *display_name)

So just adding a 'const' should suffice.

pau.estalella
Thanks for your help!
OldMacDonald