SwfdecAsObjectClass is gone now
[swfdec.git] / swfdec / swfdec_as_movie_value.h
blob29f0f20aea32435fa83494d8db93a5d4434fa15a
1 /* Swfdec
2 * Copyright (C) 2008 Benjamin Otte <otte@gnome.org>
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 * Boston, MA 02110-1301 USA
20 #ifndef _SWFDEC_AS_MOVIE_VALUE_H_
21 #define _SWFDEC_AS_MOVIE_VALUE_H_
23 #include <swfdec/swfdec.h>
24 #include <swfdec/swfdec_types.h>
26 G_BEGIN_DECLS
28 typedef struct _SwfdecAsMovieValue SwfdecAsMovieValue;
29 struct _SwfdecAsMovieValue {
30 SwfdecAsMovieValue * next; /* required for GC'd stuff */
31 /* FIXME: I'd like to get rid of this */
32 SwfdecPlayer * player; /* current player instance */
33 SwfdecMovie * movie; /* reference to the movie while it isn't destroyed */
34 guint n_names; /* number of names */
35 const char * names[]; /* gc'd strings of the names of all movies */
38 SwfdecAsMovieValue *
39 swfdec_as_movie_value_new (SwfdecMovie * movie,
40 const char * name);
41 #define swfdec_as_movie_value_free(value) swfdec_as_gcable_free (SWFDEC_AS_CONTEXT ((value)->player), \
42 (value), sizeof (SwfdecAsMovieValue) + (value)->n_names * sizeof (const char *))
44 void swfdec_as_movie_value_mark (SwfdecAsMovieValue * value);
46 SwfdecMovie * swfdec_as_movie_value_get (SwfdecAsMovieValue * value);
49 G_END_DECLS
50 #endif