Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
16b99ba1
Commit
16b99ba1
authored
Oct 04, 2004
by
gbazin
Browse files
* include/main.h, include/vlc_common.h: WinCE build fixes.
parent
b0c01641
Changes
2
Hide whitespace changes
Inline
Side-by-side
include/main.h
View file @
16b99ba1
...
...
@@ -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
};
...
...
include/vlc_common.h
View file @
16b99ba1
...
...
@@ -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"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment