Changeset 5b9686862a31a9384b06879afdd2ac00fc4b4890
- Timestamp:
- 03/08/08 22:05:42
(6 months ago)
- Author:
- Rafaël Carré <funman@videolan.org>
- git-committer:
- Rafaël Carré <funman@videolan.org> 1205010342 +0100
- git-parent:
[072a6e00deaed4c5c237aab3f5b9233f5686e8b3]
- git-author:
- Rafaël Carré <funman@videolan.org> 1205010342 +0100
- Message:
Remove useless headers inclusion
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r1b09c02 |
r5b96868 |
|
| 27 | 27 | |
|---|
| 28 | 28 | #include <vlc/vlc.h> |
|---|
| 29 | | #include "../libvlc.h" |
|---|
| 30 | | #include "vlc_keys.h" |
|---|
| 31 | | #include "vlc_charset.h" |
|---|
| 32 | | |
|---|
| 33 | | #include <errno.h> /* errno */ |
|---|
| 34 | | #include <assert.h> |
|---|
| 35 | | #include <limits.h> |
|---|
| 36 | | |
|---|
| 37 | | #ifdef HAVE_UNISTD_H |
|---|
| 38 | | # include <unistd.h> /* getuid() */ |
|---|
| 39 | | #endif |
|---|
| 40 | | |
|---|
| 41 | | #ifdef HAVE_GETOPT_LONG |
|---|
| 42 | | # ifdef HAVE_GETOPT_H |
|---|
| 43 | | # include <getopt.h> /* getopt() */ |
|---|
| 44 | | # endif |
|---|
| 45 | | #else |
|---|
| 46 | | # include "../extras/getopt.h" |
|---|
| 47 | | #endif |
|---|
| 48 | | |
|---|
| 49 | | #if defined(HAVE_GETPWUID) |
|---|
| 50 | | # include <pwd.h> /* getpwuid() */ |
|---|
| 51 | | #endif |
|---|
| 52 | | |
|---|
| 53 | | #if defined( HAVE_SYS_STAT_H ) |
|---|
| 54 | | # include <sys/stat.h> |
|---|
| 55 | | #endif |
|---|
| 56 | | #if defined( HAVE_SYS_TYPES_H ) |
|---|
| 57 | | # include <sys/types.h> |
|---|
| 58 | | #endif |
|---|
| 59 | | #if defined( WIN32 ) |
|---|
| 60 | | # if !defined( UNDER_CE ) |
|---|
| 61 | | # include <direct.h> |
|---|
| 62 | | # endif |
|---|
| 63 | | #include <tchar.h> |
|---|
| 64 | | #endif |
|---|
| 65 | | |
|---|
| 66 | | #include "configuration.h" |
|---|
| 67 | | #include "modules/modules.h" |
|---|
| 68 | 29 | |
|---|
| 69 | 30 | /* Adds an extra interface to the configuration */ |
|---|