summaryrefslogtreecommitdiffstats
path: root/gui
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-01-06 23:20:15 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-01-06 23:20:15 +0000
commite27d606714997a74b94842a55c1f8bef3bbc6c75 (patch)
tree533b6a70ed12f1a6e08e95204be0ccc3d80f065c /gui
parent3dc7792ae3b3176d115fbc20deeea5f587620860 (diff)
downloadmpv-e27d606714997a74b94842a55c1f8bef3bbc6c75.tar.bz2
mpv-e27d606714997a74b94842a55c1f8bef3bbc6c75.tar.xz
Fix illegal identifiers: Names starting with __ or _ and uppercase are reserved
for the system, names starting with _ are reserved at file level. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25635 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'gui')
-rw-r--r--gui/bitmap.h2
-rw-r--r--gui/interface.h8
2 files changed, 5 insertions, 5 deletions
diff --git a/gui/bitmap.h b/gui/bitmap.h
index 0e5a455ac5..06194514e0 100644
--- a/gui/bitmap.h
+++ b/gui/bitmap.h
@@ -1,7 +1,7 @@
#ifndef GUI_BITMAP_H
#define GUI_BITMAP_H
-typedef struct _txSample
+typedef struct txSample
{
unsigned long Width;
unsigned long Height;
diff --git a/gui/interface.h b/gui/interface.h
index ad073a7333..1217d1e479 100644
--- a/gui/interface.h
+++ b/gui/interface.h
@@ -153,17 +153,17 @@ extern void guiLoadFont( void );
extern void guiLoadSubtitle( char * name );
extern void guiMessageBox(int level, char * str);
-typedef struct _plItem
+typedef struct plItem
{
- struct _plItem * prev,* next;
+ struct plItem * prev,* next;
int played;
char * path;
char * name;
} plItem;
-typedef struct _urlItem
+typedef struct urlItem
{
- struct _urlItem *next;
+ struct urlItem *next;
char * url;
} URLItem;