Add consistent GUI prefix to multiple inclusion guards.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23705 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2007-07-02 20:55:05 +00:00
parent 32cfb9ea17
commit d416c25c9b
21 changed files with 43 additions and 43 deletions

View File

@ -1,6 +1,6 @@
#ifndef __APP_H
#define __APP_H
#ifndef __GUI_APP_H
#define __GUI_APP_H
#include "bitmap.h"
#include "wm/ws.h"

View File

@ -1,5 +1,5 @@
#ifndef __BITMAP_H
#define __BITMAP_H
#ifndef __GUI_BITMAP_H
#define __GUI_BITMAP_H
typedef struct _txSample
{
@ -13,4 +13,4 @@ typedef struct _txSample
int bpRead( char * fname, txSample * bf );
void Convert32to1( txSample * in,txSample * out,int adaptivlimit );
#endif /* __BITMAP_H */
#endif /* __GUI_BITMAP_H */

View File

@ -1,6 +1,6 @@
#ifndef __CFG_H
#define __CFG_H
#ifndef __GUI_CFG_H
#define __GUI_CFG_H
extern int gtkEnableAudioEqualizer;

View File

@ -1,6 +1,6 @@
#ifndef _INTERFACE_H
#define _INTERFACE_H
#ifndef _GUI_INTERFACE_H
#define _GUI_INTERFACE_H
#include "../config.h"
#include "mplayer/play.h"

View File

@ -1,5 +1,5 @@
#ifndef __COMMON_H
#define __COMMON_H
#ifndef __GUI_COMMON_H
#define __GUI_COMMON_H
#include <stdlib.h>
#include <stdio.h>

View File

@ -1,6 +1,6 @@
#ifndef __GMPLAYER_H
#define __GMPLAYER_H
#ifndef __GUI_GMPLAYER_H
#define __GUI_GMPLAYER_H
extern int mplSubRender;
extern int mplMainRender;

View File

@ -1,6 +1,6 @@
#ifndef __COMMON_H
#define __COMMON_H
#ifndef __GUI_COMMON_H
#define __GUI_COMMON_H
#include <gdk/gdkkeysyms.h>
#include <gtk/gtk.h>

View File

@ -1,6 +1,6 @@
#ifndef __OPTS_H
#define __OPTS_H
#ifndef __GUI_OPTS_H
#define __GUI_OPTS_H
#include <gtk/gtk.h>

View File

@ -1,6 +1,6 @@
#ifndef _URL_H
#define _URL_H
#ifndef _GUI_URL_H
#define _GUI_URL_H
extern GtkWidget * URL;
extern int gtkVURLDialogBox;

View File

@ -1,6 +1,6 @@
#ifndef __WIDGETS_H
#define __WIDGETS_H
#ifndef __GUI_WIDGETS_H
#define __GUI_WIDGETS_H
#include <stdio.h>
#include <stdlib.h>

View File

@ -1,6 +1,6 @@
#ifndef _CUT_H
#define _CUT_H
#ifndef _GUI_CUT_H
#define _GUI_CUT_H
extern void cutItem( char * in,char * out,char sep,int num );
extern int cutItemToInt( char * in,char sep,int num );

View File

@ -1,6 +1,6 @@
#ifndef _FONT_H
#define _FONT_H
#ifndef _GUI_FONT_H
#define _GUI_FONT_H
#include "bitmap.h"
#include "app.h"

View File

@ -1,6 +1,6 @@
#ifndef __SKIN_H
#define __SKIN_H
#ifndef __GUI_SKIN_H
#define __GUI_SKIN_H
#include "app.h"

View File

@ -21,8 +21,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef _DIALOGS_H
#define _DIALOGS_H
#ifndef _GUI_DIALOGS_H
#define _GUI_DIALOGS_H
#define TBS_TOOLTIPS 0x0100
#define WM_SYSTRAY (WM_USER+1)

View File

@ -21,8 +21,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef _GUI_H
#define _GUI_H
#ifndef _GUI_GUI_H
#define _GUI_GUI_H
#include "config.h"
#include "mplayer.h"
#include "playtree.h"

View File

@ -21,8 +21,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef _PLAYLIST_H
#define _PLAYLIST_H
#ifndef _GUI_PLAYLIST_H
#define _GUI_PLAYLIST_H
typedef struct
{

View File

@ -21,8 +21,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef _SKINLOAD_H
#define _SKINLOAD_H
#ifndef _GUI_SKINLOAD_H
#define _GUI_SKINLOAD_H
typedef struct
{

View File

@ -21,8 +21,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef _WINCFG_H
#define _WINCFG_H
#ifndef _GUI_WINCFG_H
#define _GUI_WINCFG_H
extern char *skinName;
extern int sub_window;

View File

@ -4,8 +4,8 @@
// Writed by pontscho / fresh!mindworkz
// ----------------------------------------------------------------------------------------------
#ifndef __WS_H
#define __WS_H
#ifndef __GUI_WS_H
#define __GUI_WS_H
#include <X11/Xlib.h>
#include <X11/Xutil.h>

View File

@ -1,6 +1,6 @@
#ifndef _WSKEYS_H
#define _WSKEYS_H
#ifndef _GUI_WSKEYS_H
#define _GUI_WSKEYS_H
#define wsKeyNone -1

View File

@ -1,6 +1,6 @@
#ifndef _WSXDND_H
#define _WSXDND_H
#ifndef _GUI_WSXDND_H
#define _GUI_WSXDND_H
void wsXDNDInitialize(void);