* include/main.h, include/vlc_common.h: WinCE build fixes.

This commit is contained in:
Gildas Bazin 2004-10-04 16:03:30 +00:00
parent b0c0164100
commit 16b99ba155
2 changed files with 8 additions and 2 deletions

View File

@ -68,6 +68,8 @@ struct libvlc_t
vlc_bool_t b_fast_mutex;
int i_win9x_cv;
char * psz_vlcpath;
#elif defined( UNDER_CE )
char * psz_vlcpath;
#endif
};

View File

@ -7,7 +7,7 @@
*
* Authors: Samuel Hocevar <sam@via.ecp.fr>
* Vincent Seguin <seguin@via.ecp.fr>
* Gildas Bazin <gbazin@netcourrier.com>
* Gildas Bazin <gbazin@videolan.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -397,7 +397,11 @@ typedef int ( * vlc_callback_t ) ( vlc_object_t *, /* variable's object */
#if defined( WIN32 ) || defined( UNDER_CE )
# define WIN32_LEAN_AND_MEAN
# include <windows.h>
# define IS_WINNT ( GetVersion() < 0x80000000 )
# if defined( UNDER_CE )
# define IS_WINNT 0
# else
# define IS_WINNT ( GetVersion() < 0x80000000 )
# endif
#endif
#include "vlc_threads.h"