diff options
author | Tim Champagne <tchamp@users.sourceforge.net> | 2003-04-22 23:30:29 +0000 |
---|---|---|
committer | Tim Champagne <tchamp@users.sourceforge.net> | 2003-04-22 23:30:29 +0000 |
commit | 927f32b8bf5cb1bb64795aeca3b427c4e91ba0dc (patch) | |
tree | f1bb3dccce867b7bf96e20dc8074f933dee7fef6 /src/input/libdvdnav | |
parent | 9d422a9e3c7cbd0d3dfdf8c077f24f9a8f035cec (diff) | |
download | xine-lib-927f32b8bf5cb1bb64795aeca3b427c4e91ba0dc.tar.gz xine-lib-927f32b8bf5cb1bb64795aeca3b427c4e91ba0dc.tar.bz2 |
Additional changes for win32/msvc port; This is my first real commit so please be gentle with me; Everything builds except for the win32 ui
CVS patchset: 4650
CVS date: 2003/04/22 23:30:29
Diffstat (limited to 'src/input/libdvdnav')
-rw-r--r-- | src/input/libdvdnav/dvdnav.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/input/libdvdnav/dvdnav.h b/src/input/libdvdnav/dvdnav.h index fa210ea53..44ef878e1 100644 --- a/src/input/libdvdnav/dvdnav.h +++ b/src/input/libdvdnav/dvdnav.h @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: dvdnav.h,v 1.10 2003/04/07 19:59:09 jcdutton Exp $ + * $Id: dvdnav.h,v 1.11 2003/04/22 23:30:36 tchamp Exp $ * */ @@ -34,11 +34,16 @@ extern "C" { #endif #ifdef HAVE_DVDNAV +#ifndef _MSC_VER # include <dvdnav/dvdnav_events.h> # include <dvdnav/dvd_types.h> #else # include "dvdnav_events.h" # include "dvd_types.h" +#endif /* _MSC_VER */ +#else +# include "dvdnav_events.h" +# include "dvd_types.h" #endif #include "dvd_reader.h" |