comparison libvo/x11_common.h @ 33313:169a40da4c53

Add "const" to equalizer name argument to avoid compiler warnings.
author reimar
date Sat, 07 May 2011 18:48:31 +0000
parents c7ebb0b711a6
children ab4b48ef5a68
comparison
equal deleted inserted replaced
33312:fdfabd2d4476 33313:169a40da4c53
74 int vo_x11_update_geometry(void); 74 int vo_x11_update_geometry(void);
75 void vo_x11_fullscreen( void ); 75 void vo_x11_fullscreen( void );
76 void vo_x11_setlayer( Display * mDisplay,Window vo_window,int layer ); 76 void vo_x11_setlayer( Display * mDisplay,Window vo_window,int layer );
77 void vo_x11_uninit(void); 77 void vo_x11_uninit(void);
78 Colormap vo_x11_create_colormap(XVisualInfo *vinfo); 78 Colormap vo_x11_create_colormap(XVisualInfo *vinfo);
79 uint32_t vo_x11_set_equalizer(char *name, int value); 79 uint32_t vo_x11_set_equalizer(const char *name, int value);
80 uint32_t vo_x11_get_equalizer(char *name, int *value); 80 uint32_t vo_x11_get_equalizer(const char *name, int *value);
81 void fstype_help(void); 81 void fstype_help(void);
82 Window vo_x11_create_smooth_window( Display *mDisplay, Window mRoot, 82 Window vo_x11_create_smooth_window( Display *mDisplay, Window mRoot,
83 Visual *vis, int x, int y, unsigned int width, unsigned int height, 83 Visual *vis, int x, int y, unsigned int width, unsigned int height,
84 int depth, Colormap col_map); 84 int depth, Colormap col_map);
85 void vo_x11_create_vo_window(XVisualInfo *vis, int x, int y, 85 void vo_x11_create_vo_window(XVisualInfo *vis, int x, int y,