~ubuntu-branches/ubuntu/saucy/gnash/saucy-proposed

« back to all changes in this revision

Viewing changes to gui/pythonmod/gnash.defs

  • Committer: Bazaar Package Importer
  • Author(s): Sindhudweep Narayan Sarkar
  • Date: 2009-10-07 00:06:10 UTC
  • mfrom: (1.1.12 upstream)
  • Revision ID: james.westby@ubuntu.com-20091007000610-mj9rwqe774gizn1j
Tags: 0.8.6-0ubuntu1
new upstream release 0.8.6 (LP: #435897)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
(define-object View
 
2
  (in-module "Gnash")
 
3
  (parent "GtkBin")
 
4
  (c-name "GnashView")
 
5
  (gtype-id "GNASH_TYPE_VIEW")
 
6
)
 
7
 
 
8
(define-method call
 
9
  (of-object "GnashView")
 
10
  (c-name "gnash_view_call")
 
11
  (return-type "const-char*")
 
12
  (parameters
 
13
    '("const-char*" "func_name")
 
14
    '("const-char*" "input_data" (null-ok) (default "NULL"))
 
15
  )
 
16
)
 
17