~ubuntu-branches/ubuntu/natty/vlc/natty

« back to all changes in this revision

Viewing changes to modules/misc/lua/libs.h

  • Committer: Bazaar Package Importer
  • Author(s): Benjamin Drung
  • Date: 2010-06-25 01:09:16 UTC
  • mfrom: (1.1.30 upstream)
  • Revision ID: james.westby@ubuntu.com-20100625010916-asxhep2mutg6g6pd
Tags: 1.1.0-1ubuntu1
* Merge from Debian unstable, remaining changes:
  - build and install the libx264 plugin
  - add Xb-Npp header to vlc package
  - Add apport hook to include more vlc dependencies in bug reports
* Drop xulrunner patches.
* Drop 502_xulrunner_191.diff.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * libs.h: VLC Lua wrapper libraries
3
3
 *****************************************************************************
4
4
 * Copyright (C) 2008 the VideoLAN team
5
 
 * $Id: 689025e6ffc3d5c0b66ebe4045cc453d65c415cc $
 
5
 * $Id: 8bca89c41d6f6bd8dff382567a14d51c061c10c1 $
6
6
 *
7
7
 * Authors: Antoine Cellerier <dionoea at videolan tod org>
8
8
 *
26
26
 
27
27
void luaopen_acl( lua_State * );
28
28
void luaopen_config( lua_State * );
29
 
void luaopen_volume( lua_State * );
 
29
void luaopen_dialog( lua_State *, void * );
30
30
void luaopen_httpd( lua_State * );
31
31
void luaopen_input( lua_State * );
32
32
void luaopen_msg( lua_State * );
42
42
void luaopen_video( lua_State * );
43
43
void luaopen_vlm( lua_State * );
44
44
void luaopen_volume( lua_State * );
 
45
void luaopen_gettext( lua_State * );
 
46
void luaopen_input_item( lua_State *L, input_item_t *item );
 
47
void luaopen_xml( lua_State *L );
 
48
void luaopen_md5( lua_State *L );
45
49
 
46
50
#endif