summaryrefslogtreecommitdiffstats
path: root/gui
diff options
context:
space:
mode:
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;