comparison gui/win32/gui.h @ 35521:baf53d200292

Avoid using local variables named filename. This is the name of a global MPlayer variable. Avoiding it avoids confusion.
author ib
date Wed, 05 Dec 2012 23:28:14 +0000
parents 31a5320909f7
children 7affacef2f88
comparison
equal deleted inserted replaced
35520:ecbaf301748f 35521:baf53d200292
100 gui_t *create_gui(char *skindir, void (*playercontrol)(int event)); 100 gui_t *create_gui(char *skindir, void (*playercontrol)(int event));
101 int destroy_window(gui_t *gui); 101 int destroy_window(gui_t *gui);
102 int create_window(gui_t *gui, char *skindir); 102 int create_window(gui_t *gui, char *skindir);
103 int create_videowindow(gui_t *gui); 103 int create_videowindow(gui_t *gui);
104 int parse_filename(char *file, play_tree_t *playtree, m_config_t *mconfig, int clear); 104 int parse_filename(char *file, play_tree_t *playtree, m_config_t *mconfig, int clear);
105 void capitalize(char *filename); 105 void capitalize(char *fname);
106 LPSTR acp(LPCSTR utf8); 106 LPSTR acp(LPCSTR utf8);
107 107
108 void renderinfobox(skin_t *skin, window_priv_t *priv); 108 void renderinfobox(skin_t *skin, window_priv_t *priv);
109 void renderwidget(skin_t *skin, image *dest, widget *item, int state); 109 void renderwidget(skin_t *skin, image *dest, widget *item, int state);
110 110