Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
909417ea
Commit
909417ea
authored
Aug 13, 2008
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vlc_network: vlc_poll is always exported. Don't put it behind an ifdef.
parent
6feaa530
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
include/vlc_network.h
include/vlc_network.h
+3
-2
src/network/poll.c
src/network/poll.c
+1
-0
No files found.
include/vlc_network.h
View file @
909417ea
...
...
@@ -180,10 +180,11 @@ struct pollfd
int
events
;
int
revents
;
};
VLC_EXPORT
(
int
,
vlc_poll
,
(
struct
pollfd
*
fds
,
unsigned
nfds
,
int
timeout
));
# define poll(a, b, c) vlc_poll(a, b, c)
#endif
struct
pollfd
;
VLC_EXPORT
(
int
,
vlc_poll
,
(
struct
pollfd
*
fds
,
unsigned
nfds
,
int
timeout
));
#ifdef WIN32
/* Microsoft: same semantic, same value, different name... go figure */
...
...
src/network/poll.c
View file @
909417ea
...
...
@@ -26,6 +26,7 @@
#endif
#include <vlc_common.h>
#include <vlc_network.h>
#ifdef HAVE_POLL
struct
pollfd
;
...
...
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