diff options
author | František Dvořák <valtri@users.sourceforge.net> | 2004-09-26 22:54:51 +0000 |
---|---|---|
committer | František Dvořák <valtri@users.sourceforge.net> | 2004-09-26 22:54:51 +0000 |
commit | 9025bf7cc003e8e9981eaf2adc4c614d9bca765c (patch) | |
tree | 2788c21b13ec9bfb2fbf2852ae7b4a6c6b764979 /src/xine-engine/input_rip.c | |
parent | c4fcac1273c5be824b7468edcda160c38dec1692 (diff) | |
download | xine-lib-9025bf7cc003e8e9981eaf2adc4c614d9bca765c.tar.gz xine-lib-9025bf7cc003e8e9981eaf2adc4c614d9bca765c.tar.bz2 |
- almost finalize headers refactoring needed for MSVC frontends (and for other
poor platforms, of course)
- fix a bug in generated xine-config for WIN32 and make it relocateable
under Windows
- MSVC port: update, fix some warnings, remove old unneeded files
- improve function for getting runtime directory, it will need next fix
yet (bug probably due to active volume drives)
CVS patchset: 7001
CVS date: 2004/09/26 22:54:51
Diffstat (limited to 'src/xine-engine/input_rip.c')
-rw-r--r-- | src/xine-engine/input_rip.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/xine-engine/input_rip.c b/src/xine-engine/input_rip.c index d09b64c3d..18088ea87 100644 --- a/src/xine-engine/input_rip.c +++ b/src/xine-engine/input_rip.c @@ -29,7 +29,7 @@ * - it's possible speeder saving streams in the xine without playing: * xine stream_mrl#save:file.raw\;noaudio\;novideo * - * $Id: input_rip.c,v 1.24 2004/09/20 19:30:05 valtri Exp $ + * $Id: input_rip.c,v 1.25 2004/09/26 22:54:52 valtri Exp $ */ /* TODO: @@ -58,8 +58,13 @@ #define LOG */ -#define CLR_FAIL "\e[1;31m" -#define CLR_RST "\e[0;39m" +#ifdef WIN32 +# define CLR_FAIL "" +# define CLR_RST "" +#else +# define CLR_FAIL "\e[1;31m" +# define CLR_RST "\e[0;39m" +#endif #include "xine_internal.h" |