[vlc-devel] commit: vlc_object_internals_t is internal ( Rémi Denis-Courmont )
git version control
git at videolan.org
Thu Sep 18 21:35:34 CEST 2008
vlc | branch: master | Rémi Denis-Courmont <rdenis at simphalempin.com> | Thu Sep 18 22:38:37 2008 +0300| [a1f55ee9090308c1f81ed7d55700634599ba4f2a] | committer: Rémi Denis-Courmont
vlc_object_internals_t is internal
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=a1f55ee9090308c1f81ed7d55700634599ba4f2a
---
include/vlc_common.h | 2 --
src/libvlc.h | 4 ++--
2 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/include/vlc_common.h b/include/vlc_common.h
index 1c2e806..56ccbbe 100644
--- a/include/vlc_common.h
+++ b/include/vlc_common.h
@@ -513,8 +513,6 @@ typedef int ( * vlc_callback_t ) ( vlc_object_t *, /* variable's object */
#include "vlc_mtime.h"
#include "vlc_threads.h"
-typedef struct vlc_object_internals_t vlc_object_internals_t;
-
/*****************************************************************************
* Common structure members
*****************************************************************************/
diff --git a/src/libvlc.h b/src/libvlc.h
index 015f9d8..72feefd 100644
--- a/src/libvlc.h
+++ b/src/libvlc.h
@@ -155,7 +155,7 @@ libvlc_global_data_t *vlc_global (void);
/**
* Private LibVLC data for each object.
*/
-struct vlc_object_internals_t
+typedef struct vlc_object_internals_t
{
/* Object variables */
variable_t * p_vars;
@@ -181,7 +181,7 @@ struct vlc_object_internals_t
vlc_object_t *prev, *next;
vlc_object_t **pp_children;
int i_children;
-};
+} vlc_object_internals_t;
#define ZOOM_SECTION N_("Zoom")
#define ZOOM_QUARTER_KEY_TEXT N_("1:4 Quarter")
More information about the vlc-devel
mailing list