comparison gui/interface.h @ 27341:e7c989f7a7c9

Start unifying names of internal preprocessor directives. Replace all USE_ prefixes by CONFIG_ prefixes to indicate options which are configurable.
author diego
date Wed, 30 Jul 2008 12:01:30 +0000
parents b0a7b35b78d2
children 14c5017f40d2
comparison
equal deleted inserted replaced
27340:33274ce3cce0 27341:e7c989f7a7c9
22 #include "config.h" 22 #include "config.h"
23 #include "mplayer/play.h" 23 #include "mplayer/play.h"
24 #include "libvo/font_load.h" 24 #include "libvo/font_load.h"
25 #include "cfg.h" 25 #include "cfg.h"
26 26
27 #ifdef USE_DVDREAD 27 #ifdef CONFIG_DVDREAD
28 #include "stream/stream.h" 28 #include "stream/stream.h"
29 #endif 29 #endif
30 30
31 typedef struct 31 typedef struct
32 { 32 {
49 int width; 49 int width;
50 int height; 50 int height;
51 char codecdll[128]; 51 char codecdll[128];
52 } guiVideoStruct; 52 } guiVideoStruct;
53 53
54 #ifdef USE_DVDREAD 54 #ifdef CONFIG_DVDREAD
55 typedef struct 55 typedef struct
56 { 56 {
57 int titles; 57 int titles;
58 int chapters; 58 int chapters;
59 int angles; 59 int angles;
81 void * event_struct; 81 void * event_struct;
82 82
83 int DiskChanged; 83 int DiskChanged;
84 int NewPlay; 84 int NewPlay;
85 85
86 #ifdef USE_DVDREAD 86 #ifdef CONFIG_DVDREAD
87 guiDVDStruct DVD; 87 guiDVDStruct DVD;
88 int Title; 88 int Title;
89 int Angle; 89 int Angle;
90 int Chapter; 90 int Chapter;
91 #endif 91 #endif