Changeset 22f42ffbd494e1c5643b2edd8c042a33bd9c2f04
- Timestamp:
- 15/02/07 19:17:57
(2 years ago)
- Author:
- Filippo Carone <littlejohn@videolan.org>
- git-committer:
- Filippo Carone <littlejohn@videolan.org> 1171563477 +0000
- git-parent:
[2a1ed30d7f79c2e430b9032bf7f1112d937fa922]
- git-author:
- Filippo Carone <littlejohn@videolan.org> 1171563477 +0000
- Message:
libvlc_Internal* need to be exported for libvlc-control
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rb71fdec |
r22f42ff |
|
| 35 | 35 | * Internal creation and destruction functions |
|---|
| 36 | 36 | ***************************************************************************/ |
|---|
| 37 | | libvlc_int_t *libvlc_InternalCreate( void ); |
|---|
| 38 | | int libvlc_InternalInit( libvlc_int_t *, int, char *ppsz_argv[] ); |
|---|
| 39 | | int libvlc_InternalCleanup( libvlc_int_t * ); |
|---|
| 40 | | int libvlc_InternalDestroy( libvlc_int_t *, vlc_bool_t ); |
|---|
| | 37 | VLC_EXPORT (libvlc_int_t *, libvlc_InternalCreate, ( void ) ); |
|---|
| | 38 | VLC_EXPORT (int, libvlc_InternalInit, ( libvlc_int_t *, int, char *ppsz_argv[] ) ); |
|---|
| | 39 | VLC_EXPORT (int, libvlc_InternalCleanup, ( libvlc_int_t * ) ); |
|---|
| | 40 | VLC_EXPORT (int, libvlc_InternalDestroy, ( libvlc_int_t *, vlc_bool_t ) ); |
|---|
| 41 | 41 | |
|---|
| 42 | | int libvlc_InternalAddIntf( libvlc_int_t *, const char *, vlc_bool_t, |
|---|
| 43 | | vlc_bool_t, int, const char *const * ); |
|---|
| | 42 | VLC_EXPORT (int, libvlc_InternalAddIntf, ( libvlc_int_t *, const char *, vlc_bool_t, |
|---|
| | 43 | vlc_bool_t, int, const char *const * ) ); |
|---|
| 44 | 44 | |
|---|
| 45 | 45 | /*************************************************************************** |
|---|