Changeset 3371:dbd3f8c59d29 in roaraudio for include


Ignore:
Timestamp:
02/08/10 23:10:43 (14 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

wrote most of the X11 stuff

Location:
include/libroar
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • include/libroar/libroar.h

    r3370 r3371  
    9494#endif 
    9595 
     96#ifdef ROAR_HAVE_LIBX11 
     97#include <X11/Xlib.h> 
     98#include <X11/Xatom.h> 
     99#endif 
     100 
    96101#include "error.h" 
    97102#include "config.h" 
  • include/libroar/roarx11.h

    r3370 r3371  
    3838#include "libroar.h" 
    3939 
     40struct roar_x11_connection { 
     41#ifdef ROAR_HAVE_LIBX11 
     42 Display * display; 
     43#else 
     44 char dummy[8]; 
     45#endif 
     46}; 
     47 
     48struct roar_x11_connection * roar_x11_connect(char * display); 
     49int roar_x11_disconnect(struct roar_x11_connection * con); 
     50 
     51int roar_x11_set_prop(struct roar_x11_connection * con, const char * key, const char * val); 
     52int roar_x11_delete_prop(struct roar_x11_connection * con, const char * key); 
     53 
    4054#endif 
    4155 
Note: See TracChangeset for help on using the changeset viewer.