Changeset 62ffefd4354ff47900238126151b0ca2d05f581e
- Timestamp:
- 20/10/07 15:39:41
(1 year ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1192887581 +0000
- git-parent:
[6dd8082f73ba1ec60597e9462076ad4aaa75ac00]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1192887581 +0000
- Message:
Protects internal headers against incorrect/multiple inclusions
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rd20dd24 |
r62ffefd |
|
| 21 | 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. |
|---|
| 22 | 22 | *****************************************************************************/ |
|---|
| | 23 | |
|---|
| | 24 | #if defined(__PLUGIN__) || defined(__BUILTIN__) || !defined(__LIBVLC__) |
|---|
| | 25 | # error This header file can only be included from LibVLC. |
|---|
| | 26 | #endif |
|---|
| | 27 | |
|---|
| | 28 | #ifndef __LIBVLC_AOUT_INTERNAL_H |
|---|
| | 29 | # define __LIBVLC_AOUT_INTERNAL_H 1 |
|---|
| 23 | 30 | |
|---|
| 24 | 31 | #if defined( __APPLE__ ) || defined( SYS_BSD ) |
|---|
| … | … | |
| 132 | 139 | int aout_DecPlay( aout_instance_t *, aout_input_t *, aout_buffer_t *, int i_input_rate ); |
|---|
| 133 | 140 | |
|---|
| | 141 | #endif /* !__LIBVLC_AOUT_INTERNAL_H */ |
|---|
| ra0429d0 |
r62ffefd |
|
| 21 | 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. |
|---|
| 22 | 22 | *****************************************************************************/ |
|---|
| | 23 | |
|---|
| | 24 | #if defined(__PLUGIN__) || defined(__BUILTIN__) || !defined(__LIBVLC__) |
|---|
| | 25 | # error This header file can only be included from LibVLC. |
|---|
| | 26 | #endif |
|---|
| 23 | 27 | |
|---|
| 24 | 28 | #ifndef _INPUT_INTERNAL_H |
|---|
| … | … | |
| 358 | 362 | } |
|---|
| 359 | 363 | |
|---|
| 360 | | #if defined(__PLUGIN__) || defined(__BUILTIN__) |
|---|
| 361 | | # warning This is an internal header, something is wrong if you see this message. |
|---|
| 362 | | #else |
|---|
| 363 | 364 | /* Stream */ |
|---|
| 364 | 365 | /** |
|---|
| … | … | |
| 390 | 391 | VLC_OBJECT_STREAM, "stream" ); |
|---|
| 391 | 392 | } |
|---|
| | 393 | |
|---|
| 392 | 394 | #endif |
|---|
| 393 | | |
|---|
| 394 | | #endif |
|---|
| r6ee1e19 |
r62ffefd |
|
| 21 | 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. |
|---|
| 22 | 22 | *****************************************************************************/ |
|---|
| | 23 | |
|---|
| | 24 | #if defined(__PLUGIN__) || defined(__BUILTIN__) || !defined(__LIBVLC__) |
|---|
| | 25 | # error This header file can only be included from LibVLC. |
|---|
| | 26 | #endif |
|---|
| 23 | 27 | |
|---|
| 24 | 28 | #ifndef _VLM_INTERNAL_H |
|---|
| rd3fe7f2 |
r62ffefd |
|
| 24 | 24 | *****************************************************************************/ |
|---|
| 25 | 25 | |
|---|
| | 26 | #if defined(__PLUGIN__) || defined(__BUILTIN__) || !defined(__LIBVLC__) |
|---|
| | 27 | # error This header file can only be included from LibVLC. |
|---|
| | 28 | #endif |
|---|
| | 29 | |
|---|
| | 30 | #ifndef __LIBVLC_INTERFACE_H |
|---|
| | 31 | # define __LIBVLC_INTERFACE_H 1 |
|---|
| | 32 | |
|---|
| 26 | 33 | /********************************************************************** |
|---|
| 27 | 34 | * Interaction |
|---|
| … | … | |
| 30 | 37 | void intf_InteractionManage( playlist_t *); |
|---|
| 31 | 38 | void intf_InteractionDestroy( interaction_t *); |
|---|
| | 39 | #endif |
|---|
| raf44752 |
r62ffefd |
|
| 22 | 22 | *****************************************************************************/ |
|---|
| 23 | 23 | |
|---|
| | 24 | #if defined(__PLUGIN__) || defined(__BUILTIN__) || !defined(__LIBVLC__) |
|---|
| | 25 | # error This header file can only be included from LibVLC. |
|---|
| | 26 | #endif |
|---|
| | 27 | |
|---|
| | 28 | #ifndef __LIBVLC_VARIABLES_H |
|---|
| | 29 | # define __LIBVLC_VARIABLES_H 1 |
|---|
| 24 | 30 | |
|---|
| 25 | 31 | typedef struct callback_entry_t callback_entry_t; |
|---|
| … | … | |
| 70 | 76 | callback_entry_t * p_entries; |
|---|
| 71 | 77 | }; |
|---|
| 72 | | |
|---|
| | 78 | #endif |
|---|
| r942772a |
r62ffefd |
|
| 18 | 18 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. |
|---|
| 19 | 19 | *****************************************************************************/ |
|---|
| | 20 | |
|---|
| | 21 | #if defined(__PLUGIN__) || defined(__BUILTIN__) || !defined(__LIBVLC__) |
|---|
| | 22 | # error This header file can only be included from LibVLC. |
|---|
| | 23 | #endif |
|---|
| 20 | 24 | |
|---|
| 21 | 25 | #ifndef LIBVLC_CONFIGURATION_H |
|---|
| r8952d64 |
r62ffefd |
|
| 21 | 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. |
|---|
| 22 | 22 | *****************************************************************************/ |
|---|
| | 23 | |
|---|
| | 24 | #if defined(__PLUGIN__) || defined(__BUILTIN__) || !defined(__LIBVLC__) |
|---|
| | 25 | # error This header file can only be included from LibVLC. |
|---|
| | 26 | #endif |
|---|
| | 27 | |
|---|
| | 28 | #ifndef __LIBVLC_MODULES_H |
|---|
| | 29 | # define __LIBVLC_MODULES_H 1 |
|---|
| | 30 | |
|---|
| 23 | 31 | |
|---|
| 24 | 32 | /* Number of tries before we unload an unused module */ |
|---|
| … | … | |
| 153 | 161 | #define module_ResetBank(a) __module_ResetBank(VLC_OBJECT(a)) |
|---|
| 154 | 162 | void __module_ResetBank ( vlc_object_t * ); |
|---|
| | 163 | |
|---|
| | 164 | #endif /* !__LIBVLC_MODULES_H */ |
|---|
| rd3b42e4 |
r62ffefd |
|
| 22 | 22 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. |
|---|
| 23 | 23 | *****************************************************************************/ |
|---|
| | 24 | |
|---|
| | 25 | #ifndef __LIBVLC_PLAYLIST_INTERNAL_H |
|---|
| | 26 | # define __LIBVLC_PLAYLIST_INTERNAL_H 1 |
|---|
| 24 | 27 | |
|---|
| 25 | 28 | /** |
|---|
| … | … | |
| 131 | 134 | |
|---|
| 132 | 135 | #define PLI_NAME( p ) p && p->p_input ? p->p_input->psz_name : "null" |
|---|
| | 136 | #endif /* !__LIBVLC_PLAYLIST_INTERNAL_H */ |
|---|
| rd212179 |
r62ffefd |
|
| 24 | 24 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. |
|---|
| 25 | 25 | ***************************************************************************/ |
|---|
| | 26 | |
|---|
| | 27 | #if defined(__PLUGIN__) || defined(__BUILTIN__) || !defined(__LIBVLC__) |
|---|
| | 28 | # error This header file can only be included from LibVLC. |
|---|
| | 29 | #endif |
|---|
| 26 | 30 | |
|---|
| 27 | 31 | #ifndef VLC_SRC_STREAMOUT_H |
|---|